forked from PHP-FFMpeg/PHP-FFMpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.83 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "php-ffmpeg/php-ffmpeg",
"type": "library",
"description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
"keywords": ["video processing", "video", "audio processing", "audio", "avconv", "ffmpeg", "avprobe", "ffprobe"],
"license": "MIT",
"authors": [
{
"name": "Romain Neutron",
"email": "[email protected]",
"homepage": "http://www.lickmychip.com/"
},
{
"name": "Phraseanet Team",
"email": "[email protected]",
"homepage": "http://www.phraseanet.com/"
},
{
"name": "Patrik Karisch",
"email": "[email protected]",
"homepage": "http://www.karisch.guru"
},
{
"name": "Romain Biard",
"email": "[email protected]",
"homepage": "https://www.strime.io/"
},
{
"name": "Jens Hausdorf",
"email": "[email protected]",
"homepage": "https://jens-hausdorf.de"
}
],
"require": {
"php": ">=5.3.9",
"alchemy/binary-driver": "^1.5 || ~2.0.0 || ^5.0",
"doctrine/cache": "^1.0",
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
"neutron/temporary-filesystem": "^2.1.1 || ^3.0"
},
"suggest": {
"php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
},
"require-dev": {
"silex/silex": "~1.0",
"symfony/phpunit-bridge": "^5.0.4",
"symfony/process": "2.8 || 3.3"
},
"autoload": {
"psr-0": {
"FFMpeg": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\FFMpeg\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}