-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 1.15 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
{
"name": "macfja/phpqa-extensions",
"description": "A tool to add more QA tools to PHPQA",
"keywords": ["phpqa", "extensions"],
"license": "MIT",
"authors": [
{
"name": "MacFJA"
}
],
"bin": [
"bin/phpqa-extensions.php"
],
"autoload": {
"psr-4": {
"MacFJA\\PHPQAExtensions\\": "src/"
}
},
"require": {
"edgedesign/phpqa": "^1.18",
"symfony/yaml": "^3.4|^4.0|^5.0",
"wikimedia/relpath": "^2.1",
"symfony/console": "3.*|4.*|5.*"
},
"require-dev": {
"povils/phpmnd": "^2.0",
"rskuipers/php-assumptions": "^0.7.0",
"wapmorgan/php-code-analyzer": "^1.0.5",
"phan/phan": "^1.2"
},
"suggest": {
"povils/phpmnd": "PHP Magic Number Detector",
"rskuipers/php-assumptions": "Tool to detect assumptions",
"wapmorgan/php-code-analyzer": "PhpCodeAnalyzer finds usage of non-built-in extensions in your php code.",
"phan/phan": "Phan is a static analyzer for PHP. Phan prefers to avoid false-positives and attempts to prove incorrectness rather than correctness."
}
}