Skip to content

Commit d1bae6d

Browse files
Merge pull request #95 from digilist/php8_support
Add support for PHP 8
2 parents 0b144ba + 70d9959 commit d1bae6d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ environment:
1616
COMPOSER_NO_INTERACTION: 1
1717
ANSICON: 121x90 (121x90) # Console colors
1818

19-
ffmpeg_download: https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-4.3.1-2020-10-01-essentials_build.zip
19+
ffmpeg_download: https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-4.3.2-2021-02-27-essentials_build.zip
2020

2121
matrix:
2222
- PHP_VERSION: Latest_Version
@@ -29,8 +29,8 @@ install:
2929
- ps: cinst php --params '""/InstallDir:C:\tools\php""' --ignore-checksums
3030
- ps: Start-FileDownload $env:ffmpeg_download
3131

32-
- 7z x ffmpeg-4.3.1-2020-10-01-essentials_build.zip
33-
- PATH=%PATH%;%cd%\ffmpeg-4.3.1-2020-10-01-essentials_build\bin
32+
- 7z x ffmpeg-4.3.2-2021-02-27-essentials_build.zip
33+
- PATH=%PATH%;%cd%\ffmpeg-4.3.2-2021-02-27-essentials_build\bin
3434
- cd c:\tools\php
3535
- copy php.ini-production php.ini /Y
3636
- echo date.timezone="UTC" >> php.ini

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ language: php
33
php:
44
- 7.2
55
- 7.3
6+
- 8.0
67

78
env:
89
matrix:
@@ -27,4 +28,4 @@ script:
2728

2829
cache:
2930
directories:
30-
- ffmpeg-release
31+
- ffmpeg-release

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
}
6363
},
6464
"require": {
65-
"php": "^7.2",
66-
"php-ffmpeg/php-ffmpeg": "^0.15 || 0.16",
65+
"php": "^7.2 || ^8.0",
66+
"php-ffmpeg/php-ffmpeg": "^0.15 || 0.16 || 0.17 || 0.18",
6767
"symfony/filesystem": "^4.0 || ^5.0"
6868
},
6969
"suggest": {

0 commit comments

Comments
 (0)