Skip to content

Commit 1143741

Browse files
authored
Merge pull request #5781 from Laravel-Backpack/update-laravel
Support Laravel 12
2 parents 8dc29a8 + dbeccb3 commit 1143741

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.github/workflows/testing.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,24 @@ jobs:
2020
matrix:
2121
# os: [ubuntu-latest, macos-latest, windows-latest]
2222
php: ['8.1', '8.2', '8.3', '8.4']
23-
laravel: [^10.0, ^11.0]
23+
laravel: [^10.0, ^11.0, ^12.0]
2424
dbal: [^3.0]
25-
phpunit: [10.*]
25+
phpunit: [10.*, 11.*]
2626
dependency-version: [stable] # to add: lowest
2727
exclude:
2828
- laravel: "^11.0"
2929
php: "8.1"
3030
dbal: "^3.0"
31-
31+
- laravel: "^12.0"
32+
php: "8.1"
33+
dbal: "^3.0"
34+
- laravel: "^12.0"
35+
php: "8.2"
36+
dbal: "^3.0"
37+
- phpunit: "11.*"
38+
laravel: "^10.0"
39+
- phpunit: "10.*"
40+
laravel: "^12.0"
3241

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

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
}
3636
],
3737
"require": {
38-
"laravel/framework": "^10.0|^11.0",
39-
"prologue/alerts": "^1.0",
38+
"laravel/framework": "^10.0|^11.0|^12",
4039
"backpack/basset": "^1.1.1|^1.3.2",
41-
"creativeorange/gravatar": "~1.0",
40+
"creativeorange/gravatar": "^1.0",
41+
"prologue/alerts": "^1.0",
4242
"doctrine/dbal": "^3.0|^4.0",
4343
"guzzlehttp/guzzle": "^7.0"
4444
},

0 commit comments

Comments
 (0)