Skip to content

Commit

Permalink
Adds support for Laravel 11 (#9)
Browse files Browse the repository at this point in the history
* Adds support for Laravel 11.

* Adds support for Laravel 11.
  • Loading branch information
lukeraymonddowning authored Mar 18, 2024
1 parent 7937db7 commit 285101c
Show file tree
Hide file tree
Showing 3 changed files with 3,148 additions and 1,695 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,20 @@ jobs:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
php: [ 8.0, 8.1, 8.2 ]
laravel: [ 8.*, 9.*, 10.* ]
php: [ 8.0, 8.1, 8.2, 8.3 ]
laravel: [ 8.*, 9.*, 10.*, 11.* ]
stability: [ prefer-stable ]
exclude:
- laravel: 8.*
php: 8.3
- laravel: 9.*
php: 8.3
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1
include:
- laravel: 8.*
testbench: ^6.6
Expand All @@ -29,6 +37,9 @@ jobs:
- laravel: 10.*
testbench: ^8.0
pest: 2.*
- laravel: 11.*
testbench: ^9.0
pest: 2.*

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
}
],
"require": {
"php": "^8.0|^8.1",
"illuminate/support": "^8.0|^9.0|^10.0"
"php": "^8.0|^8.1|^8.2|^8.3",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"nunomaduro/larastan": "^1.0.4|^2.4.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^1.1|^2.0"
},
Expand Down
Loading

0 comments on commit 285101c

Please sign in to comment.