Skip to content

Commit 54ffaaa

Browse files
authored
Remove support to Laravel 9 (#36)
1 parent 2a5302d commit 54ffaaa

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,15 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [8.3, 8.2, 8.1, 8.0]
16-
laravel: [11.*, 10.*, 9.*]
15+
php: [8.3, 8.2, 8.1]
16+
laravel: [11.*, 10.*]
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
include:
19-
- laravel: 9.*
20-
testbench: 7.*
2119
- laravel: 10.*
2220
testbench: 8.*
2321
- laravel: 11.*
2422
testbench: 9.*
2523
exclude:
26-
- laravel: 10.*
27-
php: 8.0
28-
- laravel: 11.*
29-
php: 8.0
3024
- laravel: 11.*
3125
php: 8.1
3226

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@
1919
"license": "MIT",
2020
"require": {
2121
"php" : "^8.0",
22-
"illuminate/config": "^9.0|^10.0|^11.0",
23-
"illuminate/console": "^9.0|^10.0|^11.0",
24-
"illuminate/log": "^9.0|^10.0|^11.0",
25-
"illuminate/support": "^9.0|^10.0|^11.0",
22+
"illuminate/config": "^10.0|^11.0",
23+
"illuminate/console": "^10.0|^11.0",
24+
"illuminate/log": "^10.0|^11.0",
25+
"illuminate/support": "^10.0|^11.0",
2626
"monolog/monolog": "^2.0|^3.0|^11.0",
2727
"cesargb/php-log-rotation": "^2.7"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "^9.5|^10.5",
30+
"phpunit/phpunit": "^10.5",
3131
"friendsofphp/php-cs-fixer": "^3.13",
3232
"nunomaduro/larastan": "^2.3",
33-
"orchestra/testbench": "^7.0|^8.0|^9.0"
33+
"orchestra/testbench": "^8.0|^9.0"
3434
},
3535
"autoload": {
3636
"psr-4": {

0 commit comments

Comments
 (0)