Skip to content

Commit

Permalink
Laravel 12.x Compatibility (#534)
Browse files Browse the repository at this point in the history
* Bump dependencies for Laravel 12
* Update GitHub Actions for Laravel 12
  • Loading branch information
laravel-shift authored Feb 16, 2025
1 parent f14efc5 commit 01249a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,23 @@ jobs:
matrix:
os: [ubuntu-20.04]
php: [8.4, 8.3, 8.2, 8.1]
laravel: ["10.*", "11.*"]
laravel: ['10.*', '11.*', '12.*']
ffmpeg: [5.0, 4.4]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*
exclude:
- laravel: 11.*
php: 8.1
- laravel: 10.*
php: 8.4
- laravel: 12.*
php: 8.1

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
],
"require": {
"php": "^8.1|^8.2|^8.3|^8.4",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0|^12.0",
"php-ffmpeg/php-ffmpeg": "^1.2",
"ramsey/collection": "^2.0"
},
"require-dev": {
"league/flysystem-memory": "^3.10",
"mockery/mockery": "^1.4.4",
"nesbot/carbon": "^2.66|^3.0",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.4",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^10.4|^11.5.3",
"spatie/image": "^2.2|^3.3",
"spatie/phpunit-snapshot-assertions": "^5.0"
},
Expand Down

0 comments on commit 01249a2

Please sign in to comment.