-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
37 lines (37 loc) · 1.05 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": "jmolivas/phpqa",
"description": "PHP QA Analyzer",
"keywords": ["PHP", "QA", "Development"],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Jesus Manuel Olivas",
"email": "jesus.olivas@gmail.com",
"homepage": "http://jmolivas.com"
}
],
"require": {
"php": ">=5.4.5",
"symfony/console": ">=2.8 <3.2",
"symfony/config":">=2.8 <3.2",
"symfony/process": ">=2.8 <3.2",
"jakub-onderka/php-parallel-lint": "0.9.*",
"jakub-onderka/php-console-highlighter": "0.3.*",
"friendsofphp/php-cs-fixer": "2.0.*",
"drupal/coder": ">=8.2.3",
"phpmd/phpmd" : "@stable",
"phploc/phploc": "@stable",
"sebastian/phpcpd": "@stable",
"sebastian/phpdcd": "@stable",
"phpunit/phpunit": "4.*"
},
"bin": ["bin/phpqa"],
"config": {
"bin-dir": "bin/",
"secure-http" : false
},
"autoload": {
"psr-4": {"JMOlivas\\Phpqa\\": "src"}
}
}