-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
50 lines (50 loc) · 1.3 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
{
"name": "brainbits/transcoder",
"description": "Library for encoding, decoding transcoding data.",
"keywords": ["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.4|^8.0",
"psr/log": "^1|^2|^3",
"symfony/process": ">=4.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "^3.6",
"brainbits/phpcs-standard": "^5.0",
"phpstan/phpstan": "^1.8.2",
"brainbits/phpstan-rules": "^3.0.0"
},
"autoload": {
"psr-4": { "Brainbits\\Transcoder\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Brainbits\\Transcoder\\Tests\\": "tests/" }
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}