Skip to content

Commit

Permalink
Merge pull request #160 from Askedio/feature/Laravel-12-support
Browse files Browse the repository at this point in the history
feat: Add support for Laravel 12
  • Loading branch information
gcphost authored Feb 24, 2025
2 parents c0d0285 + db9769a commit 4a40b82
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
strategy:
fail-fast: false
matrix:
laravel: ['^10', '^11']
php: ['8.2', '8.3', '8.4']
stability: ['prefer-lowest', 'prefer-stable']
laravel: [ '^10', '^11', '^12' ]
php: [ '8.2', '8.3', '8.4' ]
stability: [ 'prefer-lowest', 'prefer-stable' ]

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

Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.0|^11.0",
"illuminate/container": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/events": "^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0|^11.0",
"orchestra/testbench": "^8.0|^9.0"
},
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/container": "^10.0|^11.0|^12.0",
"illuminate/database": "^10.0|^11.0|^12.0",
"illuminate/events": "^10.0|^11.0|^12.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0|^11.0|^12.0",
"orchestra/testbench": "^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Askedio\\SoftCascade\\": "src/"
Expand Down

0 comments on commit 4a40b82

Please sign in to comment.