Skip to content

Commit

Permalink
PHP 8.4 support (#109)
Browse files Browse the repository at this point in the history
* PHP 8.4 tests

* PHP 8.4 support

* wip
  • Loading branch information
driesvints authored Oct 16, 2024
1 parent 5fa5b01 commit cc1b568
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
php: [8.1, 8.2, 8.3, 8.4]
laravel: [10, 11]
exclude:
- php: 8.1
laravel: 11
- php: 8.4
laravel: 10

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}
],
"require": {
"php": "~8.1.0|~8.2.0|~8.3.0",
"php": "~8.1.0|~8.2.0|~8.3.0|~8.4.0",
"guzzlehttp/guzzle": "^7.0",
"laravel/framework": "^10.0|^11.0",
"laravel/prompts": "^0.1|^0.2|^0.3",
Expand All @@ -33,7 +33,7 @@
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.0"
"pestphp/pest": "^2.0|^3.0"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."
Expand Down

0 comments on commit cc1b568

Please sign in to comment.