Skip to content

Commit e1c6ffc

Browse files
Laravel 12.x Compatibility (#47)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent b894405 commit e1c6ffc

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest]
1515
php: [7.3, 7.4, 8.0, 8.1, 8.2]
16-
laravel: ['8.*', '9.*', '10.*', '11.*']
16+
laravel: ['8.*', '9.*', '10.*', '11.*', '12.*']
1717
stability: [prefer-lowest, prefer-stable]
1818
exclude:
1919
- laravel: 8.*
@@ -40,6 +40,14 @@ jobs:
4040
php: 8.0
4141
- laravel: 11.*
4242
php: 8.1
43+
- laravel: 12.*
44+
php: 7.3
45+
- laravel: 12.*
46+
php: 7.4
47+
- laravel: 12.*
48+
php: 8.0
49+
- laravel: 12.*
50+
php: 8.1
4351
include:
4452
- laravel: 8.*
4553
testbench: 6.*
@@ -49,6 +57,8 @@ jobs:
4957
testbench: 8.*
5058
- laravel: 11.*
5159
testbench: 9.*
60+
- laravel: 12.*
61+
testbench: 10.*
5262

5363
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
5464

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
],
3131
"require": {
3232
"php": ">=7.3",
33-
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
34-
"illuminate/events": "^8.0|^9.0|^10.0|^11.0",
35-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
33+
"illuminate/database": "^8.0|^9.0|^10.0|^11.0|^12.0",
34+
"illuminate/events": "^8.0|^9.0|^10.0|^11.0|^12.0",
35+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0"
3636
},
3737
"require-dev": {
38-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
39-
"phpunit/phpunit": "^8.5|^9.0|^10.5",
40-
"vimeo/psalm": "^4.0|^5.22"
38+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
39+
"phpunit/phpunit": "^8.5|^9.0|^10.5|^11.5.3",
40+
"vimeo/psalm": "^4.0|^5.22|^6.6"
4141
},
4242
"autoload": {
4343
"psr-4": {

0 commit comments

Comments
 (0)