forked from brainbits/transcoder-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.27 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
{
"name": "brainbits/transcoder-bundle",
"description": "Bundle for encoding, decoding transcoding data.",
"keywords": ["symfony", "encoder", "decoder"],
"homepage": "http://brainbits.net",
"license": "MIT",
"authors": [
{
"name": "Gregor Welters",
"email": "gwelters@brainbits.net"
},
{
"name": "Phillip Look",
"email": "plook@brainbits.net"
},
{
"name": "Stephan Wentz",
"email": "swentz@brainbits.net"
}
],
"require": {
"php": "^7.1",
"brainbits/transcoder": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"symfony/config": "^2.8|^3.0",
"symfony/dependency-injection": "^2.8|^3.0",
"symfony/http-kernel": "^2.8|^3.0",
"matthiasnoback/symfony-config-test": "^3.0",
"matthiasnoback/symfony-dependency-injection-test": "^2.0"
},
"autoload": {
"psr-4": { "Brainbits\\TranscoderBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Brainbits\\TranscoderBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}