Skip to content

Commit 472bb6e

Browse files
committed
🔧 support laravel 12
1 parent dd9cd4f commit 472bb6e

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

‎.github/workflows/test.yml

+3-1
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]
11+
laravel: [10, 11, 12]
1212
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

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
],
99
"require": {
1010
"php": "^8.0",
11-
"illuminate/session": "^8.0 || ^9.0 || ^10.0 || ^11.0",
12-
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
11+
"illuminate/session": "^8.0|^9.0|^10.0|^11.0|^12.0",
12+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0"
1313
},
1414
"require-dev": {
15-
"orchestra/testbench": "^8.0 || ^9.0",
15+
"orchestra/testbench": "^8.0|^9.0|^10.0",
1616
"php-parallel-lint/php-parallel-lint": "^1.3",
1717
"phpstan/phpstan": "^2.0",
18-
"phpunit/phpunit": "^10.0",
18+
"phpunit/phpunit": "^10.0|^11.0",
1919
"squizlabs/php_codesniffer": "^3.6"
2020
},
2121
"autoload": {

0 commit comments

Comments
 (0)