Skip to content

Commit

Permalink
Merge pull request #46 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
brunocfalcao authored Mar 12, 2024
2 parents 0813eff + ef0e764 commit eaa7cd0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0, 8.1]
laravel: [^8.0, ^7.0, 10.0]
php: [7.4, 8.0, 8.1, '8.2']
laravel: [10.0, '11.0', ^7.0, ^8.0]
exclude:
- laravel: '11.0'
php: 7.4
- laravel: '11.0'
php: 8.0
- laravel: '11.0'
php: 8.1

name: P${{ matrix.php }} - L${{ matrix.laravel }}

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"require": {
"php": "^7.4|^8.0",
"blade-ui-kit/blade-icons": "^1.0",
"illuminate/support": "^7.14|^8.0|^9.0|^10.0"
"illuminate/support": "^7.14|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^5.0|^6.0|^8.0",
"phpunit/phpunit": "^8.0|^9.0"
"orchestra/testbench": "^5.0|^6.0|^8.0|^9.0",
"phpunit/phpunit": "^8.0|^9.0|^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit eaa7cd0

Please sign in to comment.