Skip to content

Commit

Permalink
Added support for Laravel 11 (#18)
Browse files Browse the repository at this point in the history
* Update composer.json

* Added Laravel 11 to testing

* Changed to dev branch

* Update dependencies for Laravel 11 support

* Updated for Laravel 11

* Added testbench as dev

* Removed dev orchestra test bench
  • Loading branch information
chrispage1 authored Mar 14, 2024
1 parent 7898a7b commit f30d139
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@ 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:
# Exclude Laravel 9 with PHP 8.0
- laravel: 9.*
php: 8.0
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1

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 @@ -17,12 +17,12 @@
],
"require": {
"php": "^8.0",
"laravel/framework": "^8.0|^9.0|^10.0"
"laravel/framework": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^8.5.8|^9.5.21|^10.0.7"
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^8.5.8|^9.5.21|^10.0.7|^10.5|^11.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit f30d139

Please sign in to comment.