Skip to content

Commit e930251

Browse files
authored
[3.x] Laravel 12 support (#1322)
* Laravel 12 support * Drop Laravel 9 support, update CI matrix * run tests on PHP 8.3
1 parent 22dcb8b commit e930251

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ jobs:
1616
strategy:
1717
matrix:
1818
include:
19-
- laravel: 9
20-
php: "8.0"
2119
- laravel: 10
2220
php: "8.1"
2321
- laravel: 11
2422
php: "8.3"
23+
- laravel: 12
24+
php: "8.3"
25+
# Ideally we'd run at least one of these on PHP 8.4, however the Dockerfile seems to require some changes for that
2526

2627
steps:
2728
- uses: actions/checkout@v2

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
"require": {
1313
"php": "^8.0",
1414
"ext-json": "*",
15-
"illuminate/support": "^9.0|^10.0|^11.0",
15+
"illuminate/support": "^10.0|^11.0|^12.0",
1616
"facade/ignition-contracts": "^1.0.2",
1717
"ramsey/uuid": "^4.7.3",
18-
"stancl/jobpipeline": "^1.6.2",
19-
"stancl/virtualcolumn": "^1.3.1"
18+
"stancl/jobpipeline": "^1.8.0",
19+
"stancl/virtualcolumn": "^1.5.0"
2020
},
2121
"require-dev": {
22-
"laravel/framework": "^9.0|^10.0|^11.0",
23-
"orchestra/testbench": "^7.0|^8.0|^9.0",
22+
"laravel/framework": "^10.0|^11.0|^12.0",
23+
"orchestra/testbench": "^8.0|^9.0|^10.0",
2424
"league/flysystem-aws-s3-v3": "^3.12.2",
2525
"doctrine/dbal": "^3.6.0",
2626
"spatie/valuestore": "^1.3.2"

0 commit comments

Comments
 (0)