Skip to content

Commit

Permalink
Add support for Laravel 11 and drop Laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Mar 7, 2024
1 parent b922a34 commit 2cc1823
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.1', '8.2']
laravel: ['9.*', '10.*@dev']
php: ['8.1', '8.2', '8.3']
laravel: ['10.*', '11.*']
composer-flags: ['--prefer-stable']
can-fail: [false]
include:
- php: '8.1'
laravel: '9.*'
laravel: '10.*'
composer-flags: '--prefer-stable --prefer-lowest'
can-fail: false
exclude:
- php: '8.1'
laravel: '11.*'

name: "PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}${{ matrix.composer-flags != '' && format(' - Composer {0}', matrix.composer-flags) || '' }}"

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"require": {
"php": "^8.1",
"fig/link-util": "^1.2",
"illuminate/http": "^9.0 || ^10.0",
"illuminate/support": "^9.0 || ^10.0",
"illuminate/http": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0",
"psr/link": "^1.1.1 || ^2.0.1"
},
"require-dev": {
"laravel/framework": "^9.0 || ^10.0",
"orchestra/testbench": "^7.0 || ^8.0",
"laravel/framework": "^10.0 || ^11.0",
"orchestra/testbench": "^8.0 || ^9.0",
"phpunit/phpunit": "^9.6 || ^10.0"
},
"autoload": {
Expand Down

1 comment on commit 2cc1823

@it-can
Copy link
Contributor

@it-can it-can commented on 2cc1823 Apr 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you release a new tag?

Please sign in to comment.