Skip to content

Commit

Permalink
Add support for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr-Moik committed Mar 18, 2024
1 parent fd61eea commit d834ec1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,17 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.1, 8.2]
laravel: [10.*]
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: 11.*
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@
"require": {
"php": "^8.1",
"deployer/deployer": "^7.3",
"graham-campbell/gitlab": "^7.0",
"graham-campbell/gitlab": "^7.5",
"guzzlehttp/guzzle": "^7.4",
"http-interop/http-factory-guzzle": "^1.0",
"laravel/framework": "^9.0 || ^10.0",
"laravel/framework": "^9.0 || ^10.0 || ^11.0",
"spatie/laravel-package-tools": "^1.13.0",
"symfony/console": "^6.0 || ^7.0",
"symfony/process": "^6.0 || ^7.0",
"symfony/yaml": "^6.1 || ^7.0"
},
"require-dev": {
"laravel/pint": "^1.14.0",
"nunomaduro/collision": "^7.10",
"nunomaduro/collision": "^7.10 || ^8.0",
"nunomaduro/larastan": "^2.9.2",
"orchestra/testbench": "^7.22.1 | ^8.21.1",
"orchestra/testbench": "^7.22.1 || ^8.21.1 || ^9.0",
"pestphp/pest": "^2.34.1",
"pestphp/pest-plugin-laravel": "^2.3",
"phpstan/extension-installer": "^1.3.1",
Expand Down

0 comments on commit d834ec1

Please sign in to comment.