Skip to content

Commit 60f3572

Browse files
authored
Merge pull request #10 from acelaya-forks/feature/php-8.3
Add PHP 8.3 support
2 parents e6908df + 66f1368 commit 60f3572

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/analyzers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['7.4', '8.0', '8.1', '8.2']
10+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
1111
fail-fast: false
1212
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1313
steps:

.github/workflows/code-style.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['7.4', '8.0', '8.1', '8.2']
10+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
1111
fail-fast: false
1212
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1313
steps:

.github/workflows/functional.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest, windows-latest, macos-latest]
10-
php-versions: ['7.4', '8.0', '8.1', '8.2']
10+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
1111
fail-fast: false
1212
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1313
steps:

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['7.4', '8.0', '8.1', '8.2']
10+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
1111
fail-fast: false
1212
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1313
steps:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 ",
14+
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
1515
"composer-plugin-api": "~2.0"
1616
},
1717
"require-dev": {

0 commit comments

Comments
 (0)