-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
36 lines (36 loc) · 927 Bytes
/
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
{
"name": "console-helpers/code-insight",
"description": "A tool for analysing other project code bases",
"license": "BSD-3-Clause",
"require": {
"php": ">=5.6.0",
"console-helpers/console-kit": "^0.3",
"symfony/finder": "^2.8",
"goaop/parser-reflection": "^1.4 || ^3.0 || ^4.0 || 4.0.0-RC2",
"console-helpers/db-migration": "^0.2.0",
"aura/sql": "^2.5 || ^3.0 || ^4.0 || ^5.0",
"doctrine/cache": "^1.5",
"camspiers/json-pretty": "^1.0",
"ext-json": "*"
},
"require-dev": {
"aik099/coding-standard": "dev-master",
"yoast/phpunit-polyfills": "^2.0",
"phpspec/prophecy": "^1.10",
"console-helpers/prophecy-phpunit": "^3.0"
},
"autoload": {
"psr-4": {
"ConsoleHelpers\\CodeInsight\\": "src/CodeInsight/"
},
"files": ["src/ReflectionType.php"]
},
"autoload-dev": {
"psr-4": {
"Tests\\ConsoleHelpers\\CodeInsight\\": "tests/CodeInsight/"
}
},
"bin": [
"bin/code-insight"
]
}