Skip to content

Commit

Permalink
Merge pull request #11 from wireui/laravel-11-support
Browse files Browse the repository at this point in the history
support laravel 11
  • Loading branch information
ph7jack authored Mar 15, 2024
2 parents 7ed75ca + 801a212 commit b5ce650
Show file tree
Hide file tree
Showing 5 changed files with 2,290 additions and 1,456 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ jobs:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3]
laravel: [9.*, 10.*]
laravel: [10.*, 11.*]
exclude:
- php: 8.3
laravel: 9.*
- php: 8.1
laravel: 11.*
- php: 8.2
laravel: 11.*

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

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.vscode
.php-cs-fixer.cache
.phpunit.result.cache
.phpunit.cache
coverage
vendor
yarn-error.log
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,13 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1|^8.2|^8.3",
"laravel/framework": "^9.16|^10.0"
"php": "^8.1|^8.2|^8.3|^8.4",
"laravel/framework": "^9.16|^10.0|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.7.0|^8.0.0",
"phpunit/phpunit": "^9.6",
"pestphp/pest": "^1.22",
"orchestra/testbench": "^7.7|^8.0|^9.0",
"pestphp/pest": "^2.0",
"nunomaduro/larastan": "^2.4",
"laravel/pint": "^1.6"
},
Expand Down
Loading

0 comments on commit b5ce650

Please sign in to comment.