Skip to content

Commit 399110b

Browse files
authored
Merge pull request #20 from eXolnet/feature/drop-laravel10
build(deps): drop Laravel 10 support
2 parents 53b3c10 + 4f8533b commit 399110b

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,10 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [8.1, 8.2, 8.3]
13-
laravel: [10.*, 11.*, 12.*]
12+
php: [8.2, 8.3]
13+
laravel: [11.*, 12.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
15-
exclude:
16-
- php: 8.1
17-
laravel: 11.*
18-
- php: 8.1
19-
laravel: 12.*
2015
include:
21-
- laravel: 10.*
22-
testbench: 8.*
2316
- laravel: 11.*
2417
testbench: 9.*
2518
- laravel: 12.*

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1",
20-
"illuminate/console": "^10.0|^11.0|^12.0",
21-
"illuminate/support": "^10.0|^11.0|^12.0"
19+
"php": "^8.2",
20+
"illuminate/console": "^11.0|^12.0",
21+
"illuminate/support": "^11.0|^12.0"
2222
},
2323
"require-dev": {
2424
"mockery/mockery": "^1.4",
25-
"orchestra/testbench": "^8.0|^9.0|^10.0",
26-
"phpunit/phpunit": "^10.5|^11.5.3",
25+
"orchestra/testbench": "^9.0|^10.0",
26+
"phpunit/phpunit": "^11.5.3",
2727
"squizlabs/php_codesniffer": "^3.6"
2828
},
2929
"autoload": {

0 commit comments

Comments
 (0)