Skip to content

Commit fee4ca7

Browse files
authored
PHP 8.4 support (#179)
* PHP 8.4 support * PHP 8.4 tests
1 parent 5016fec commit fee4ca7

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/tests.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3]
19+
php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3, 8.4]
2020
laravel: [6, 7, 8, 9, 10, 11]
2121
exclude:
2222
- php: 7.3
@@ -55,6 +55,16 @@ jobs:
5555
laravel: 8
5656
- php: 8.3
5757
laravel: 9
58+
- php: 8.4
59+
laravel: 6
60+
- php: 8.4
61+
laravel: 7
62+
- php: 8.4
63+
laravel: 8
64+
- php: 8.4
65+
laravel: 9
66+
- php: 8.4
67+
laravel: 10
5868

5969
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
6070

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
],
2626
"require": {
27-
"php": "^7.3|~8.0.0|~8.1.0|~8.2.0|~8.3.0",
27+
"php": "^7.3|~8.0.0|~8.1.0|~8.2.0|~8.3.0|~8.4.0",
2828
"ext-json": "*",
2929
"ext-soap": "*"
3030
},

0 commit comments

Comments
 (0)