Skip to content

Commit

Permalink
chore: drop laravel 9 and 10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bensherred committed Sep 3, 2024
1 parent 6e083d3 commit e8b2f94
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ jobs:
test:
runs-on: ubuntu-latest

# we want to run it on supported combination of Laravel and PHP versions
strategy:
fail-fast: false
matrix:
php: ['8.1', '8.2']
laravel: ['^9.0', '^10.0']
php: [ '8.2', '8.3' ]
laravel: [ '^11.0' ]

steps:
- name: Checkout the repo
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
}
],
"require": {
"php": "^8.1 || ^8.2",
"php": "^8.2",
"ext-json": "*",
"laravel/framework": "^9.0 || ^10.0"
"laravel/framework": "^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.0 || ^8.0",
"orchestra/testbench": "^9.0",
"tmarsteel/mockery-callable-mock": "~2.1",
"netsells/code-standards-laravel": "^1.1"
},
Expand Down

0 comments on commit e8b2f94

Please sign in to comment.