Skip to content

Commit

Permalink
Support Laravel 11 (#20)
Browse files Browse the repository at this point in the history
* Support Laravel 11

* Remove Laravel 9 support / Upgrade to Pest 2.x

* wip
  • Loading branch information
dmason30 authored Mar 5, 2024
1 parent 4cab1e4 commit 88ed32f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.3, 8.2, 8.1]
laravel: ['^10.0', '^9.2']
laravel: ['^11.0', '^10.0']
stability: [prefer-lowest, prefer-stable]
exclude:
- laravel: '^11.0'
php: 8.1
include:
- laravel: '^9.2'
testbench: 7.*
- laravel: '^10.0'
testbench: 8.*
- laravel: '^11.0'
testbench: 9.*

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

Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,18 @@
],
"require": {
"php": "^8.1",
"illuminate/console": "^9.2|^10.0"
"illuminate/console": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^6.0",
"nunomaduro/collision": "^7.0|^8.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5"
"phpstan/phpstan-phpunit": "^1.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 88ed32f

Please sign in to comment.