-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (35 loc) · 1.02 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
{
"name": "vektah/bugfree-dangerzone",
"type": "type-verifier",
"description": "Type verification for php source. Ensures uses and all types within a file verify against the projects auto loader.",
"keywords": ["ci", "type", "typehint", "testing"],
"homepage": "https://github.com/Vektah/bugfree-dangerzone",
"licence": "BSD-2-Clause",
"authors": [
{
"name": "Adam Scarr",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"nikic/php-parser": "3.0.*@beta || ^3.0",
"symfony/console": "*",
"doctrine/annotations": "*",
"vektah/common": "*",
"vektah/parser-combinator": "*"
},
"require-dev": {
"phake/phake": "v2.0.0-alpha4",
"phpunit/phpunit": "3.7.*",
"vektah/psr2": "*",
"squizlabs/php_codesniffer": "1.*"
},
"bin": [
"bin/bugfree"
],
"autoload": {
"psr-0": {"bugfree\\": "src/main/"}
}
}