forked from sukhilss/video-thumbnail
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
35 lines (35 loc) · 820 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "pawlox/video-thumbnail",
"description": "Video thumbnails",
"keywords": [
"Video Thumbnails", "Laravel video thumbnail", "Laravel"
],
"license": "MIT",
"authors": [
{
"name": "Paweł Marciniak",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-gd": "*",
"illuminate/support": "^10.0|^11",
"php-ffmpeg/php-ffmpeg": "^1.1.0"
},
"autoload": {
"psr-4": {
"Pawlox\\VideoThumbnail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pawlox\\VideoThumbnail\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"require-dev": {
"orchestra/testbench": "~7.0",
"phpunit/phpunit": "^10"
}
}