Skip to content

Commit 1aafadb

Browse files
committed
🔧 support laravel 12 and test php 8.4
1 parent f5fa02c commit 1aafadb

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

‎.github/workflows/tests.yml‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
laravel: [10, 11]
12-
php: [8.1, 8.2, 8.3]
11+
laravel: [10, 11, 12]
12+
php: [8.1, 8.2, 8.3, 8.4]
1313
exclude:
1414
- php: 8.1
1515
laravel: 11
16+
- php: 8.1
17+
laravel: 12
1618

1719
steps:
1820
- uses: actions/checkout@v4

‎composer.json‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
"license": "MIT",
77
"require": {
88
"php": "^8.0",
9-
"illuminate/database": "^8.43|^9.0|^10.0|^11.0",
10-
"illuminate/support": "^8.43|^9.0|^10.0|^11.0",
11-
"illuminate/collections": "^8.43|^9.0|^10.0|^11.0",
12-
"illuminate/config": "^8.43|^9.0|^10.0|^11.0",
13-
"illuminate/cache": "^8.43|^9.0|^10.0|^11.0",
9+
"illuminate/database": "^8.43|^9.0|^10.0|^11.0|^12.0",
10+
"illuminate/support": "^8.43|^9.0|^10.0|^11.0|^12.0",
11+
"illuminate/collections": "^8.43|^9.0|^10.0|^11.0|^12.0",
12+
"illuminate/config": "^8.43|^9.0|^10.0|^11.0|^12.0",
13+
"illuminate/cache": "^8.43|^9.0|^10.0|^11.0|^12.0",
1414
"symfony/console": "^5.3|^6.0|^7.0"
1515
},
1616
"require-dev": {
1717
"mockery/mockery": "^1.4",
18-
"orchestra/testbench": "^8.0|^9.0",
19-
"phpunit/phpunit": "^10.0"
18+
"orchestra/testbench": "^8.0|^9.0|^10.0",
19+
"phpunit/phpunit": "^10.0|^11.0"
2020
},
2121
"autoload-dev": {
2222
"psr-4": {

0 commit comments

Comments
 (0)