-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
44 lines (44 loc) · 1.29 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
{
"name": "sensiolabs-de/deprecation-detector",
"type": "application",
"description": "Command line tool to detect usage of deprecated code",
"license": "MIT",
"authors": [
{
"name": "Marvin Klemp",
"email": "[email protected]"
},
{
"name": "The SensioLabs Deutschland Team",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9 || ^7.0",
"nikic/php-parser": "~3.0",
"symfony/console": "^2.6 || ^3.0",
"symfony/finder": "^2.6 || ^3.0",
"phpdocumentor/reflection-docblock": "~2.0 || ~3.0 || ~4.0",
"symfony/stopwatch": "^2.7 || ^3.0",
"symfony/filesystem": "^2.7 || ^3.0",
"symfony/dependency-injection": "^2.7 || ^3.0",
"symfony/config": "^2.7 || ^3.0",
"symfony/expression-language": "^2.7 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"mikey179/vfsstream": "^1.0"
},
"bin": ["bin/deprecation-detector"],
"autoload": {
"psr-4": {
"SensioLabs\\DeprecationDetector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SensioLabs\\DeprecationDetector\\Tests\\": "tests/"
}
},
"abandoned": true
}