Skip to content

Commit 6c31ac7

Browse files
authored
Add support for Laravel 12 (limosa-io#112)
1 parent 2054442 commit 6c31ac7

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
php: [8.0, 8.1, 8.2]
12-
laravel: [8.*, 9.*, 10.*, 11.*]
12+
laravel: [8.*, 9.*, 10.*, 11.*, 12.*]
1313
exclude:
1414
- laravel: 8.*
1515
php: 8.2
@@ -23,6 +23,14 @@ jobs:
2323
php: 8.0
2424
- laravel: 11.*
2525
php: 8.1
26+
- laravel: 12.*
27+
php: 7.3
28+
- laravel: 12.*
29+
php: 7.4
30+
- laravel: 12.*
31+
php: 8.0
32+
- laravel: 12.*
33+
php: 8.1
2634

2735
name: PHP ${{ matrix.php }} on Laravel ${{ matrix.laravel }}
2836

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
],
1212
"require": {
1313
"php": "^8.0",
14-
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
15-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
16-
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
14+
"illuminate/database": "^8.0|^9.0|^10.0|^11.0|^12.0",
15+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
16+
"illuminate/console": "^8.0|^9.0|^10.0|^11.0|^12.0",
1717
"tmilos/scim-schema": "^0.1.0",
1818
"tmilos/scim-filter-parser": "^1.3"
1919
},
@@ -29,7 +29,7 @@
2929
}
3030
},
3131
"require-dev": {
32-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
32+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
3333
"laravel/legacy-factories": "*"
3434
},
3535

0 commit comments

Comments
 (0)