Skip to content

Commit eac7fc2

Browse files
authored
Support for PHP 8.2 (#457)
1 parent 10ad86b commit eac7fc2

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: true
1212
matrix:
1313
os: [ubuntu-20.04]
14-
php: [8.1, 8.0]
14+
php: [8.2, 8.1, 8.0]
1515
laravel: [9.*]
1616
ffmpeg: [5.0, 4.4]
1717
dependency-version: [prefer-lowest, prefer-stable]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
This package provides an integration with FFmpeg for Laravel 9. [Laravel's Filesystem](http://laravel.com/docs/9.x/filesystem) handles the storage of the files.
99

10-
## Support this package!
10+
## Sponsor this package!
1111

1212
❤️ We proudly support the community by developing Laravel packages and giving them away for free. If this package saves you time or if you're relying on it professionally, please consider [sponsoring the maintenance and development](https://github.com/sponsors/pascalbaljet). Keeping track of issues and pull requests takes time, but we're happy to help!
1313

@@ -27,7 +27,7 @@ It's the *magic* of Inertia.js with the *simplicity* of Blade. [Splade](https://
2727
* Built-in support for watermarks (positioning and manipulation).
2828
* Built-in support for creating a mosaic/sprite/tile from a video.
2929
* Built-in support for generating *VTT Preview Thumbnail* files.
30-
* Requires PHP 8.0 and 8.1.
30+
* Requires PHP 8.0, 8.1, and 8.2.
3131
* Tested with FFmpeg 4.4 and 5.0.
3232

3333
## Installation

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.0|^8.1",
23+
"php": "^8.0|^8.1|^8.2",
2424
"illuminate/contracts": "^9.0",
25-
"php-ffmpeg/php-ffmpeg": "^1.0.1"
25+
"php-ffmpeg/php-ffmpeg": "^1.1",
26+
"ramsey/collection": "^1.2.2"
2627
},
2728
"require-dev": {
2829
"league/flysystem-memory": "^3.0",
2930
"mockery/mockery": "^1.3.3",
31+
"nesbot/carbon": "^2.63",
3032
"orchestra/testbench": "^7.0",
3133
"phpunit/phpunit": "^9.5.10",
3234
"spatie/image": "^2.0",
@@ -61,4 +63,4 @@
6163
}
6264
}
6365
}
64-
}
66+
}

0 commit comments

Comments
 (0)