Skip to content

Commit f14efc5

Browse files
authored
Support for PHP 8.4 (#529)
1 parent 5cdf4aa commit f14efc5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
fail-fast: true
1515
matrix:
1616
os: [ubuntu-20.04]
17-
php: [8.3, 8.2, 8.1]
18-
laravel: ['10.*', '11.*']
17+
php: [8.4, 8.3, 8.2, 8.1]
18+
laravel: ["10.*", "11.*"]
1919
ffmpeg: [5.0, 4.4]
2020
dependency-version: [prefer-lowest, prefer-stable]
2121
include:
@@ -26,6 +26,8 @@ jobs:
2626
exclude:
2727
- laravel: 11.*
2828
php: 8.1
29+
- laravel: 10.*
30+
php: 8.4
2931

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

@@ -43,7 +45,6 @@ jobs:
4345
- name: Install FFmpeg
4446
uses: Iamshankhadeep/[email protected]
4547
with:
46-
token: ${{ secrets.CI_GITHUB_TOKEN }}
4748
version: ${{ matrix.ffmpeg }}
4849
id: setup-ffmpeg
4950

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.1|^8.2|^8.3",
23+
"php": "^8.1|^8.2|^8.3|^8.4",
2424
"illuminate/contracts": "^10.0|^11.0",
2525
"php-ffmpeg/php-ffmpeg": "^1.2",
2626
"ramsey/collection": "^2.0"

0 commit comments

Comments
 (0)