Skip to content

Commit 1c265a7

Browse files
Laravel 12.x Compatibility (#31)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent e7e847a commit 1c265a7

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
php: [8.4, 8.3, 8.2]
15-
laravel: ['10.*', '11.*']
15+
laravel: ['10.*', '11.*', '12.*']
1616
dependency-version: [prefer-stable]
1717
include:
1818
- laravel: 10.*
1919
testbench: 8.*
2020
- laravel: 11.*
2121
testbench: 9.*
22+
- laravel: 12.*
23+
testbench: 10.*
2224
exclude:
2325
- laravel: 10.*
2426
php: 8.4

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"type": "library",
1414
"require": {
1515
"php": "^8.1",
16-
"illuminate/console": "^10.0|^11.0",
17-
"illuminate/database": "^10.0|^11.0",
18-
"illuminate/events": "^10.0|^11.0",
19-
"illuminate/support": "^10.0|^11.0"
16+
"illuminate/console": "^10.0|^11.0|^12.0",
17+
"illuminate/database": "^10.0|^11.0|^12.0",
18+
"illuminate/events": "^10.0|^11.0|^12.0",
19+
"illuminate/support": "^10.0|^11.0|^12.0"
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "^9.0|^10.5",
23-
"orchestra/testbench": "^8.0|^9.0",
22+
"phpunit/phpunit": "^9.0|^10.5|^11.5.3",
23+
"orchestra/testbench": "^8.0|^9.0|^10.0",
2424
"laravel/legacy-factories": "^1.0.4",
2525
"friendsofphp/php-cs-fixer": "^3.13",
2626
"larastan/larastan": "^2.0"

0 commit comments

Comments
 (0)