This repository has been archived by the owner on Feb 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.57 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": "elnebuloso/phing-commons",
"type": "library",
"license": "MIT",
"description": "phing commons build stack",
"keywords": [
"php",
"phing",
"build-management",
"continuous-integration"
],
"authors": [
{
"name": "Jeff Tunessen",
"email": "jeff.tunessen@gmail.com",
"role": "Maintainer"
}
],
"autoload": {
"psr-0": {
"Commons\\": "src/"
}
},
"repositories": [],
"require": {
"php": "^5.6 || ^7.0",
"phing/phing": "2.11.0",
"phpmd/phpmd": "2.5.0",
"pdepend/pdepend": "2.3.2",
"phploc/phploc": "3.0.1",
"sebastian/phpcpd": "2.0.4",
"squizlabs/php_codesniffer": "2.7.0",
"apigen/apigen": "4.1.2",
"phpunit/phpunit": "4.8.27",
"pear/archive_tar": "1.4.2",
"abraham/twitteroauth": "0.7.1",
"elnebuloso/bundler": "~9.0",
"cakephp/cakephp-codesniffer": "2.1.5",
"escapestudios/symfony2-coding-standard": "2.9.1"
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"post-update-cmd": [
"bin/phpcs --config-set installed_paths ../../../resources/codesniffer,../../../vendor/cakephp/cakephp-codesniffer,../../../vendor/escapestudios/symfony2-coding-standard"
],
"post-install-cmd": [
"bin/phpcs --config-set installed_paths ../../../resources/codesniffer,../../../vendor/cakephp/cakephp-codesniffer,../../../vendor/escapestudios/symfony2-coding-standard"
]
}
}