Skip to content

Commit

Permalink
Support for PHP 8.4 (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet authored Nov 12, 2024
1 parent 5cdf4aa commit f14efc5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-20.04]
php: [8.3, 8.2, 8.1]
laravel: ['10.*', '11.*']
php: [8.4, 8.3, 8.2, 8.1]
laravel: ["10.*", "11.*"]
ffmpeg: [5.0, 4.4]
dependency-version: [prefer-lowest, prefer-stable]
include:
Expand All @@ -26,6 +26,8 @@ jobs:
exclude:
- laravel: 11.*
php: 8.1
- laravel: 10.*
php: 8.4

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

Expand All @@ -43,7 +45,6 @@ jobs:
- name: Install FFmpeg
uses: Iamshankhadeep/[email protected]
with:
token: ${{ secrets.CI_GITHUB_TOKEN }}
version: ${{ matrix.ffmpeg }}
id: setup-ffmpeg

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"php": "^8.1|^8.2|^8.3|^8.4",
"illuminate/contracts": "^10.0|^11.0",
"php-ffmpeg/php-ffmpeg": "^1.2",
"ramsey/collection": "^2.0"
Expand Down

0 comments on commit f14efc5

Please sign in to comment.