-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.41 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
{
"name": "kreta/simple-api-doc-bundle",
"description": "Kreta simple api doc bundle on top of NelmioApiDocBundle",
"keywords": [
"api",
"documentation",
"kreta",
"bundle"
],
"homepage": "http://kreta.io",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Beñat Espiña Diaz",
"email": "[email protected]",
"homepage": "http://benatespina.com"
},
{
"name": "Gorka Laucirica Ibarra",
"email": "[email protected]",
"homepage": "http://gorkalaucirica.net"
}
],
"require": {
"php": ">=5.4",
"nelmio/api-doc-bundle": "^2.8"
},
"require-dev": {
"fabpot/php-cs-fixer": "^1.11",
"mmoreram/php-formatter": "^1.1",
"phpspec/phpspec": "^2.4"
},
"scripts": {
"cs": [
"php-formatter f:h:f src",
"php-formatter f:h:f spec",
"php-formatter f:u:s src",
"php-formatter f:u:s spec",
"php-cs-fixer fix --config-file=.php_cs",
"php-cs-fixer fix --config-file=.phpspec_cs"
],
"test": "phpspec run"
},
"autoload": {
"psr-4": {
"Kreta\\SimpleApiDocBundle\\": "src/Kreta/SimpleApiDocBundle/"
},
"exclude-from-classmap": ["/spec/"]
}
}