forked from pszczekutowicz/php-integrator-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 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
40
{
"name": "php-integrator/core",
"type": "project",
"description": "PHP code analysis and utilities",
"keywords": ["static", "analysis", "indexing", "indexer", "integrator", "autocompletion", "refactoring"],
"homepage": "https://php-integrator.github.io/",
"license": "GPL-3.0",
"require": {
"php": "^5.6 || ^7.0",
"ext-mbstring": "*",
"ext-pdo_sqlite": "*",
"doctrine/cache": "^1.6",
"doctrine/dbal": "^2.5",
"evenement/evenement": "^2.0",
"nikic/php-parser": "^3.0",
"react/socket": "~0.4.4",
"symfony/dependency-injection": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"PhpIntegrator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpIntegrator\\Tests\\": "tests/"
}
},
"scripts": {
"test" : "vendor/bin/phpunit"
},
"config" : {
"platform": {
"php": "5.6.0"
}
}
}