Skip to content

Commit d1c1958

Browse files
Laravel 12.x Compatibility (#9)
1 parent 8988d5f commit d1c1958

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,16 @@ jobs:
1010
strategy:
1111
matrix:
1212
php-version: ['8.0', '8.1', '8.2']
13-
laravel-version: [10.0, '11.0', ^8, ^9]
13+
laravel-version: [10.0, '11.0', '12.0', ^8, ^9]
1414
exclude:
1515
- laravel-version: '11.0'
1616
php-version: '8.0'
1717
- laravel-version: '11.0'
1818
php-version: '8.1'
19+
- laravel-version: '12.0'
20+
php-version: '8.0'
21+
- laravel-version: '12.0'
22+
php-version: '8.1'
1923

2024
steps:
2125
- name: Setup PHP

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
],
2020
"require": {
2121
"php": "^8.0.2",
22-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
23-
"illuminate/http": "^8.0|^9.0|^10.0|^11.0",
24-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
22+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
23+
"illuminate/http": "^8.0|^9.0|^10.0|^11.0|^12.0",
24+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0"
2525
},
2626
"require-dev": {
27-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
28-
"phpunit/phpunit": "^9.0|^10.5"
27+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
28+
"phpunit/phpunit": "^9.0|^10.5|^11.5.3"
2929
},
3030
"autoload": {
3131
"psr-4": {

0 commit comments

Comments
 (0)