-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (51 loc) · 1.48 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
{
"name": "gmllt/cf-helper",
"description": "Simple helper for accessing cloudfoundry VCAP_SERVICES and VCAP_APPLICATION env variables",
"version": "0.1.0",
"type": "library",
"keywords": [
"cloudfoundry",
"phpbuildpack"
],
"homepage": "https://gitlab.com/gmllt/cf-helper",
"readme": "README.md",
"license": "GNU General Public License v3.0",
"authors": [
{
"name": "Gilles Miraillet",
"email": "[email protected]",
"homepage": "https://gitlab.com/gmllt",
"role": "Developer"
}
],
"support": {
"issues": "https://gitlab.com/gmllt/cf-helper/issues",
"wiki": "https://gitlab.com/gmllt/cf-helper/wikis/home",
"source": "https://gitlab.com/gmllt/cf-helper/tree/master"
},
"minimum-stability": "stable",
"require": {
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "*",
"phploc/phploc": "*",
"phpdocumentor/phpdocumentor": "*"
},
"autoload": {
"psr-4": {
"Gmllt\\CfHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gmllt\\CfHelper\\Test\\": "tests/"
}
},
"scripts": {
"tests": "vendor/bin/phpunit -c phpunit.xml",
"code_sniff": "vendor/bin/phpcs src/ --standard=vendor/squizlabs/php_codesniffer/src/Standards/PSR12/ruleset.xml --warning-severity=8 --error-severity=1",
"phpcbf": "vendor/bin/phpcbf src/ tests/ --standard=vendor/squizlabs/php_codesniffer/src/Standards/PSR12/ruleset.xml",
"loc" : "vendor/bin/phploc src/"
}
}