-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
55 lines (55 loc) · 1.58 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
{
"name": "brainbits/transcoder-bundle",
"description": "Bundle for encoding, decoding transcoding data.",
"keywords": ["symfony", "encoder", "decoder"],
"homepage": "https://www.brainbits.net",
"license": "MIT",
"authors": [
{
"name": "Gregor Welters",
"email": "[email protected]"
},
{
"name": "Phillip Look",
"email": "[email protected]"
},
{
"name": "Stephan Wentz",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"brainbits/transcoder": "^4.0",
"symfony/config": ">=4.4.12",
"symfony/dependency-injection": ">=4.4.12",
"symfony/http-kernel": ">=4.4"
},
"require-dev": {
"brainbits/phpcs-standard": "^5.0",
"brainbits/phpstan-rules": "^2.0",
"jangregor/phpstan-prophecy": "^0.8.1",
"matthiasnoback/symfony-config-test": "^4.3",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.99",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": { "Brainbits\\TranscoderBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Brainbits\\TranscoderBundle\\Tests\\": "tests/" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}