Skip to content

Commit e8b2f94

Browse files
committed
chore: drop laravel 9 and 10 support
1 parent 6e083d3 commit e8b2f94

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88

9-
# we want to run it on supported combination of Laravel and PHP versions
109
strategy:
1110
fail-fast: false
1211
matrix:
13-
php: ['8.1', '8.2']
14-
laravel: ['^9.0', '^10.0']
12+
php: [ '8.2', '8.3' ]
13+
laravel: [ '^11.0' ]
1514

1615
steps:
1716
- name: Checkout the repo

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.1 || ^8.2",
23+
"php": "^8.2",
2424
"ext-json": "*",
25-
"laravel/framework": "^9.0 || ^10.0"
25+
"laravel/framework": "^11.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "^7.0 || ^8.0",
28+
"orchestra/testbench": "^9.0",
2929
"tmarsteel/mockery-callable-mock": "~2.1",
3030
"netsells/code-standards-laravel": "^1.1"
3131
},

0 commit comments

Comments
 (0)