Skip to content

Commit e70ac28

Browse files
Laravel 12.x Compatibility (#390)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent 0af2d9b commit e70ac28

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/tests.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
os: [ubuntu-latest]
15-
php: [8.1, "8.2"]
16-
laravel: ["8.*", "9.*", "10.*", "11.*"]
15+
php: [8.1, '8.2']
16+
laravel: ['8.*', '9.*', '10.*', '11.*', '12.*']
1717
dependency-version: [prefer-stable]
1818
include:
1919
- laravel: 10.*
@@ -24,9 +24,13 @@ jobs:
2424
testbench: 7.*
2525
- laravel: 11.*
2626
testbench: 9.*
27+
- laravel: 12.*
28+
testbench: 10.*
2729
exclude:
2830
- laravel: 11.*
2931
php: 8.1
32+
- laravel: 12.*
33+
php: 8.1
3034

3135
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
3236

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
],
2222
"require": {
2323
"php": "^8.1",
24-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
25-
"illuminate/cache": "^8.0|^9.0|^10.0|^11.0",
26-
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0"
24+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
25+
"illuminate/cache": "^8.0|^9.0|^10.0|^11.0|^12.0",
26+
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0"
2727
},
2828
"require-dev": {
2929
"laravel/legacy-factories": "^1.0",
3030
"laravel/pint": "^1.4",
31-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
32-
"phpunit/phpunit": "^9.3|^10.5",
33-
"vimeo/psalm": "^5.0"
31+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
32+
"phpunit/phpunit": "^9.3|^10.5|^11.5.3",
33+
"vimeo/psalm": "^5.0|^6.6"
3434
},
3535
"autoload": {
3636
"psr-4": {

0 commit comments

Comments
 (0)