Skip to content

Commit 4a40b82

Browse files
authored
Merge pull request #160 from Askedio/feature/Laravel-12-support
feat: Add support for Laravel 12
2 parents c0d0285 + db9769a commit 4a40b82

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
laravel: ['^10', '^11']
16-
php: ['8.2', '8.3', '8.4']
17-
stability: ['prefer-lowest', 'prefer-stable']
15+
laravel: [ '^10', '^11', '^12' ]
16+
php: [ '8.2', '8.3', '8.4' ]
17+
stability: [ 'prefer-lowest', 'prefer-stable' ]
1818

1919
name: Laravel ${{ matrix.laravel }} - PHP ${{ matrix.php }} - ${{ matrix.stability }}
2020

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
],
1313
"require": {
1414
"php": "^8.2",
15-
"illuminate/support": "^10.0|^11.0",
16-
"illuminate/container": "^10.0|^11.0",
17-
"illuminate/database": "^10.0|^11.0",
18-
"illuminate/events": "^10.0|^11.0"
19-
},
20-
"require-dev": {
21-
"phpunit/phpunit": "^10.0|^11.0",
22-
"orchestra/testbench": "^8.0|^9.0"
23-
},
15+
"illuminate/support": "^10.0|^11.0|^12.0",
16+
"illuminate/container": "^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+
},
20+
"require-dev": {
21+
"phpunit/phpunit": "^10.0|^11.0|^12.0",
22+
"orchestra/testbench": "^8.0|^9.0|^10.0"
23+
},
2424
"autoload": {
2525
"psr-4": {
2626
"Askedio\\SoftCascade\\": "src/"

0 commit comments

Comments
 (0)