-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 2.34 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 2.34 KB
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
56
57
58
59
60
{
"name": "edgedesign/phpqa",
"type": "library",
"description": "Analyze PHP code with one command.",
"keywords": ["QA", "code analysis", "static analysis"],
"license": "MIT",
"authors": [
{
"name": "Zdenek Drahos",
"email": "drahoszdenek@gmail.com"
}
],
"support": {
"issues": "https://github.com/EdgedesignCZ/phpqa/issues",
"source": "https://github.com/EdgedesignCZ/phpqa",
"docs": "https://edgedesigncz.github.io/phpqa/"
},
"bin": ["phpqa"],
"require": {
"php": ">=5.4",
"ext-xsl": "*",
"consolidation/robo": "~0.5|>=1",
"twig/twig": "~1.38|~2.7|>=3"
},
"suggest": {
"squizlabs/php_codesniffer": "Detect coding standard violation (phpcs) and fix them (phpcbf)",
"enlightn/security-checker": "Check composer.lock for known security issues",
"friendsofphp/php-cs-fixer": "A tool to automatically fix PHP coding standards issues",
"phpunit/phpunit": "The PHP Unit Testing framework",
"phpstan/phpstan": "PHP Static Analysis Tool - discover bugs in your code without running it!",
"psalm/phar": "A static analysis tool for finding errors in PHP applications",
"php-parallel-lint/php-parallel-lint": "Check PHP syntax",
"php-parallel-lint/php-console-highlighter": "Colored output in parallel-lint",
"deptrac/deptrac": "Enforce rules for dependencies between software layers",
"phpmd/phpmd" : "user friendly metrics from pdepend",
"pdepend/pdepend": "Analyze you the quality of your design in terms of extensibility, reusability and maintainability",
"phpmetrics/phpmetrics": "Metrics about PHP project and classes in HTML report",
"phploc/phploc": "Abandoned measuring the size of a PHP project",
"sebastian/phpcpd": "Abandoned copy-paste detector"
},
"require-dev": {
"hamcrest/hamcrest-php": ">=2.0.1",
"phpunit/phpunit": ">=4.8.28"
},
"autoload": {
"psr-4": {
"Edge\\QA\\": "src"
},
"files": ["src/report.php", "src/paths.php"]
},
"autoload-dev": {
"files": [
"tests/.phpunit/fix-testcase.php",
"vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest.php"
]
},
"config": {
"optimize-autoloader": true
}
}