-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
98 lines (98 loc) · 2.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "juliangut/slim-doctrine",
"description": "Slim-Doctrine managers integration",
"keywords": [
"slim",
"framework",
"doctrine",
"handler"
],
"homepage": "http://github.com/juliangut/slim-doctrine",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Julián Gutiérrez",
"email": "juliangut@gmail.com",
"homepage": "http://juliangut.com",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/juliangut/slim-doctrine",
"issues": "https://github.com/juliangut/slim-doctrine/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.6|^7.0",
"slim/slim": "^3.0",
"juliangut/doctrine-manager-builder": "^1.7"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.1",
"doctrine/orm": "^2.4",
"doctrine/mongodb-odm": "^1.1",
"doctrine/couchdb-odm": "dev-master",
"friendsofphp/php-cs-fixer": "^1.0",
"phpmd/phpmd": "^2.0",
"phpunit/phpunit": "^4.5|^5.0",
"phpunit/phpunit-mock-objects": "^3.2",
"sebastian/phpcpd": "^2.0",
"squizlabs/php_codesniffer": "^2.0"
},
"suggest": {
"doctrine/orm": "^2.4",
"doctrine/mongodb-odm": "^1.1",
"doctrine/couchdb-odm": "dev-master"
},
"autoload": {
"psr-4": {
"Jgut\\Slim\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jgut\\Slim\\Doctrine\\Tests\\": "tests/Doctrine/"
}
},
"bin": [
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"cghooks": "cghooks",
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update",
"php-lint": "php -l src && php -l tests",
"phpcs": "phpcs --standard=PSR2 src tests",
"phpcs-lint": "php-cs-fixer fix --dry-run --verbose",
"phpcpd": "phpcpd src",
"phpmd": "phpmd src text unusedcode,naming,design,controversial,codesize",
"phpunit": "phpunit",
"phpunit-coverage": "phpunit --coverage-html build/coverage",
"phpunit-clover": "phpunit --coverage-clover build/logs/clover.xml",
"qa": [
"@php-lint",
"@phpcs",
"@phpcs-lint",
"@phpcpd",
"@phpmd"
],
"reports": [
"@phpunit-coverage"
],
"fix": "php-cs-fixer fix --verbose",
"security": "composer outdated",
"test": [
"@php-lint",
"@phpunit"
]
},
"extra": {
"hooks": {
"pre-commit": "composer qa && composer phpunit"
}
}
}