-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "jkphl/elevator",
"description": "Elevator pattern implementation for PHP projects",
"homepage": "https://github.com/jkphl/elevator",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Joschi Kuphal",
"email": "joschi@kuphal.net",
"homepage": "https://jkphl.is",
"role": "Developer"
}
],
"support": {
"email": "joschi@kuphal.net",
"source": "https://github.com/jkphl/elevator",
"issues": "https://github.com/jkphl/elevator/issues"
},
"config": {
"sort-packages": true
},
"repositories": {
"graph-composer": {
"type": "git",
"url": "https://github.com/jkphl/graph-composer"
}
},
"require": {
"php": ">=5.6"
},
"autoload": {
"psr-4": {
"Jkphl\\": "src/"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml.dist",
"depgraph": "vendor/bin/graph-composer --no-dev export . doc/dependencies.svg",
"check-style": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"test": "@phpunit",
"phploc": "vendor/bin/phploc --count-tests --progress --log-xml build/phploc.xml src",
"phpmd": "vendor/bin/phpmd src xml phpmd.xml --reportfile build/phpmd.xml",
"phpdox": "vendor/bin/phpdox",
"build": [
"@phploc",
"@phpmd",
"@phpunit",
"@phpdox"
]
},
"require-dev": {
"clue/graph-composer": "dev-master",
"codeclimate/php-test-reporter": "^0.4.4",
"phploc/phploc": "^4.0",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^5.7",
"satooshi/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "^3.0",
"theseer/phpdox": "dev-master"
}
}