-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
50 lines (50 loc) · 933 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "arhitector/transcoder",
"description": "Tools to transcoding/encoding audio or video, inspect and convert media formats",
"type": "library",
"license": "MIT",
"keywords": [
"ffmpeg",
"video",
"transcoder",
"audio",
"converting",
"transcoding"
],
"homepage": "https://github.com/jack-theripper/transcoder",
"authors": [
{
"name": "Dmitry Arhitector",
"email": "dmitry.arhitector@yandex.ru"
}
],
"autoload": {
"psr-4": {
"Arhitector\\Transcoder\\": "src"
}
},
"autoload-dev": {
"Arhitector\\Transcoder\\Tests\\": "tests"
},
"require": {
"php": ">=5.6",
"ralouphie/mimey": "^1.0",
"league/event": "^2.1",
"symfony/process": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "5.*"
},
"config": {
"bin-dir": "vendor/bin",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"test": "phpunit --colors=auto"
}
}