-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 856 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 856 Bytes
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
{
"name": "ac/transcoding",
"type": "library",
"description": "File transcoding abstraction component for PHP 5.3+.",
"keywords": ["file", "convert", "transcode"],
"homepage": "http://github.com/americancouncils/transcoding",
"license": "MIT",
"authors": [
{
"name": "Evan Villemez",
"email": "evan.villemez@americancouncils.org"
},
{
"name": "Andrew Freix"
},
{
"name": "Jay Hebert"
}
],
"require": {
"php": ">=5.3.2",
"ext-fileinfo": "*",
"symfony/event-dispatcher": ">=2.1, <2.6"
},
"require-dev" : {
"symfony/process": ">=2.1, <2.6"
},
"minimum-stability": "stable",
"target-dir": "AC/Transcoding",
"autoload": {
"psr-0": { "AC\\Transcoding": "" }
}
}