Skip to content

Commit

Permalink
Merge pull request #3 from r8/laravel-11
Browse files Browse the repository at this point in the history
Add Laravel 11 support
  • Loading branch information
domthomas-dev authored May 9, 2024
2 parents a6f5e45 + 8cff0d4 commit a4fcdf9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
laravel: [9, 10]
laravel: [9, 10, 11]
exclude:
- php: 8.1
laravel: 11

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

Expand All @@ -35,4 +38,4 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
],
"require": {
"php": "~8.1.0|~8.2.0|~8.3.0",
"blade-ui-kit/blade-icons": "^1.4",
"illuminate/support": "^9.0|^10.0"
"blade-ui-kit/blade-icons": "^1.6",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.13",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.23",
"phpunit/phpunit": "^9.0"
"orchestra/testbench": "^7.0|^8.0|^9.0",
"pestphp/pest": "^1.23|^2.0",
"phpunit/phpunit": "^9.0|^10.5|^11.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit a4fcdf9

Please sign in to comment.