Skip to content

Commit

Permalink
Merge pull request #18 from machacekmartin/patch-1
Browse files Browse the repository at this point in the history
Add support for Laravel 11
  • Loading branch information
troccoli authored Mar 21, 2024
2 parents 6bde5ed + a0695f3 commit 7f5587e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 8.1, 8.2 ]
laravel: [ ^10.0 ]
php: [ 8.1, 8.2, 8.3 ]
laravel: [ ^10.0, ^11.0 ]
exclude:
- php: 8.1
laravel: ^11.0

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

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
}
],
"require": {
"php": "^8.1|^8.2",
"blade-ui-kit/blade-icons": "^1.5",
"illuminate/support": "^10.0"
"php": "^8.1|^8.2|^8.3",
"blade-ui-kit/blade-icons": "^1.6",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0"
"phpunit/phpunit": "^10.0|^11.0",
"orchestra/testbench": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 7f5587e

Please sign in to comment.