Skip to content

Commit 01249a2

Browse files
Laravel 12.x Compatibility (#534)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent f14efc5 commit 01249a2

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/run-tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,23 @@ jobs:
1515
matrix:
1616
os: [ubuntu-20.04]
1717
php: [8.4, 8.3, 8.2, 8.1]
18-
laravel: ["10.*", "11.*"]
18+
laravel: ['10.*', '11.*', '12.*']
1919
ffmpeg: [5.0, 4.4]
2020
dependency-version: [prefer-lowest, prefer-stable]
2121
include:
2222
- laravel: 10.*
2323
testbench: 8.*
2424
- laravel: 11.*
2525
testbench: 9.*
26+
- laravel: 12.*
27+
testbench: 10.*
2628
exclude:
2729
- laravel: 11.*
2830
php: 8.1
2931
- laravel: 10.*
3032
php: 8.4
33+
- laravel: 12.*
34+
php: 8.1
3135

3236
name: ${{ matrix.os }} - P${{ matrix.php }} - L${{ matrix.laravel }} - FF${{ matrix.ffmpeg }} - ${{ matrix.dependency-version }}
3337

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
],
2222
"require": {
2323
"php": "^8.1|^8.2|^8.3|^8.4",
24-
"illuminate/contracts": "^10.0|^11.0",
24+
"illuminate/contracts": "^10.0|^11.0|^12.0",
2525
"php-ffmpeg/php-ffmpeg": "^1.2",
2626
"ramsey/collection": "^2.0"
2727
},
2828
"require-dev": {
2929
"league/flysystem-memory": "^3.10",
3030
"mockery/mockery": "^1.4.4",
3131
"nesbot/carbon": "^2.66|^3.0",
32-
"orchestra/testbench": "^8.0|^9.0",
33-
"phpunit/phpunit": "^10.4",
32+
"orchestra/testbench": "^8.0|^9.0|^10.0",
33+
"phpunit/phpunit": "^10.4|^11.5.3",
3434
"spatie/image": "^2.2|^3.3",
3535
"spatie/phpunit-snapshot-assertions": "^5.0"
3636
},

0 commit comments

Comments
 (0)