Skip to content

Commit cc1b568

Browse files
authored
PHP 8.4 support (#109)
* PHP 8.4 tests * PHP 8.4 support * wip
1 parent 5fa5b01 commit cc1b568

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [8.1, 8.2, 8.3]
19+
php: [8.1, 8.2, 8.3, 8.4]
2020
laravel: [10, 11]
2121
exclude:
2222
- php: 8.1
2323
laravel: 11
24+
- php: 8.4
25+
laravel: 10
2426

2527
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2628

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
],
2626
"require": {
27-
"php": "~8.1.0|~8.2.0|~8.3.0",
27+
"php": "~8.1.0|~8.2.0|~8.3.0|~8.4.0",
2828
"guzzlehttp/guzzle": "^7.0",
2929
"laravel/framework": "^10.0|^11.0",
3030
"laravel/prompts": "^0.1|^0.2|^0.3",
@@ -33,7 +33,7 @@
3333
},
3434
"require-dev": {
3535
"orchestra/testbench": "^8.0|^9.0",
36-
"pestphp/pest": "^2.0"
36+
"pestphp/pest": "^2.0|^3.0"
3737
},
3838
"suggest": {
3939
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."

0 commit comments

Comments
 (0)