Skip to content

Commit f31b582

Browse files
authored
Support for PHP 8.4 (#13)
1 parent 399c656 commit f31b582

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.github/workflows/run-tests.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [8.3, 8.2, 8.1]
15-
laravel: ['10.*', '11.*', '12.*']
14+
php: [8.4, 8.3, 8.2]
15+
laravel: ["10.*", "11.*", "12.*"]
1616
dependency-version: [prefer-lowest, prefer-stable]
1717
include:
1818
- laravel: 10.*
@@ -21,11 +21,6 @@ jobs:
2121
testbench: 9.*
2222
- laravel: 12.*
2323
testbench: 10.*
24-
exclude:
25-
- laravel: 11.*
26-
php: 8.1
27-
- laravel: 12.*
28-
php: 8.1
2924

3025
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3126

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Requirements
1414

15-
* PHP 8.1+
15+
* PHP 8.2+
1616
* Laravel 10.0
1717

1818
## Installation

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1 || ^8.2 || ^8.3",
19+
"php": "^8.2 || ^8.3 || ^8.4",
2020
"illuminate/support": " ^10.0 || ^11.0 || ^12.0"
2121
},
2222
"require-dev": {
@@ -25,7 +25,7 @@
2525
"laravel/ui": "^4.0",
2626
"mockery/mockery": "^1.4.4",
2727
"moneyphp/money": "^3.3 || ^4.5",
28-
"nesbot/carbon": "^2.66 || ^3.0",
28+
"nesbot/carbon": "^2.71 || ^3.0",
2929
"orchestra/testbench": " ^8.0 || ^9.0 || ^10.0",
3030
"phpunit/phpunit": "^10.4 || ^11.5.3",
3131
"spatie/laravel-sitemap": "^6.0 || ^7.2",
@@ -56,4 +56,4 @@
5656
},
5757
"minimum-stability": "dev",
5858
"prefer-stable": true
59-
}
59+
}

0 commit comments

Comments
 (0)