This repository has been archived by the owner on Sep 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
composer.json
55 lines (55 loc) · 1.62 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
51
52
53
54
55
{
"name": "ovr/phpsa",
"description": "PHPSA aims to bring complex static analysis for PHP applications and libraries.",
"keywords": ["phpsa","analysis","qa","quality","static analysis"],
"type": "util",
"bin": [
"bin/phpsa"
],
"license": "MIT",
"authors": [
{
"name": "Dmitry Patsura",
"email": "[email protected]",
"homepage": "https://github.com/ovr"
},
{
"name": "Contributors",
"homepage": "https://github.com/ovr/phpsa/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/ovr/phpsa/issues",
"source": "https://github.com/ovr/phpsa",
"docs": "https://github.com/ovr/phpsa/tree/master/docs"
},
"require": {
"php": ">=7.0",
"ovr/phpreflection": "^0.3.1",
"symfony/console": "^3.3.6 || ^4.0",
"symfony/event-dispatcher": "^3.3.6 || ^4.0",
"symfony/config": "^3.3.6 || ^4.0",
"symfony/yaml": "^3.3.6 || ^4.0",
"nikic/php-parser": "^4.2.1",
"phpdocumentor/reflection-docblock": "^4.3",
"phpdocumentor/type-resolver": "^0.4",
"webiny/event-manager": "^1.4.1",
"regex-guard/regex-guard": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.0.2",
"symfony/var-dumper": "^3.3 || ^4.0"
},
"autoload": {
"files": ["src/functions.php"],
"psr-4": {
"PHPSA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PHPSA\\": "tests/PHPSA"
}
}
}