Skip to content

Commit c6bd8ce

Browse files
authored
Drop support for Laravel 10 and 11 (#5819)
1 parent 53c4ef9 commit c6bd8ce

File tree

2 files changed

+8
-22
lines changed

2 files changed

+8
-22
lines changed

.github/workflows/testing.yml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,11 @@ jobs:
2020
# run all combinations of the following, to make sure they're working together
2121
matrix:
2222
# os: [ubuntu-latest, macos-latest, windows-latest]
23-
php: ['8.1', '8.2', '8.3', '8.4']
24-
laravel: [^10.0, ^11.0, ^12.0]
25-
dbal: [^3.0]
26-
phpunit: [10.*, 11.*]
23+
php: ['8.2', '8.3', '8.4']
24+
laravel: [^12.0]
25+
dbal: [^4.0]
26+
phpunit: [11.*]
2727
dependency-version: [stable] # to add: lowest
28-
exclude:
29-
- laravel: "^11.0"
30-
php: "8.1"
31-
dbal: "^3.0"
32-
- laravel: "^12.0"
33-
php: "8.1"
34-
dbal: "^3.0"
35-
- laravel: "^12.0"
36-
php: "8.2"
37-
dbal: "^3.0"
38-
- phpunit: "11.*"
39-
laravel: "^10.0"
40-
- phpunit: "10.*"
41-
laravel: "^12.0"
4228

4329
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, PHPUnit ${{ matrix.phpunit }}, DBAL ${{ matrix.dbal }} --prefer-${{ matrix.dependency-version }}
4430

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@
3535
}
3636
],
3737
"require": {
38-
"laravel/framework": "^10.0|^11.0|^12",
38+
"laravel/framework": "^12",
3939
"backpack/basset": "^2.0.0-alpha",
4040
"creativeorange/gravatar": "^1.0",
4141
"prologue/alerts": "^1.0",
42-
"doctrine/dbal": "^3.0|^4.0",
42+
"doctrine/dbal": "^4.0",
4343
"guzzlehttp/guzzle": "^7.0"
4444
},
4545
"require-dev": {
46-
"phpunit/phpunit": "^10.0|^9.0|^11.0",
47-
"orchestra/testbench": "^8.0|^9.0|^10.0",
46+
"phpunit/phpunit": "^11.0",
47+
"orchestra/testbench": "^10.0",
4848
"spatie/laravel-translatable": "^6.0"
4949
},
5050
"autoload": {

0 commit comments

Comments
 (0)