-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 2.53 KB
/
composer.json
File metadata and controls
97 lines (97 loc) · 2.53 KB
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
{
"name": "dgrassato/api-base-bundle",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Diego Pereira Grassato",
"email": "dgrassato@ciandt.com"
},
{
"name": "Diego Pereira Grassato",
"email": "diego.grassato@gmail.com"
}
],
"autoload": {
"psr-4": {
"BaseBundle\\": "src"
}
},
"config": {
"process-timeout": 90000
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^5.6 || ^7.0",
"symfony/psr-http-message-bridge": "^1.0",
"zendframework/zend-diactoros": "^1.3",
"zendframework/zend-stdlib": "^3.0",
"zendframework/zend-hydrator": "^2.2",
"zendframework/zend-code": "3.0.2",
"league/pipeline": "^0.3.0",
"cocur/slugify": "^2.1",
"guzzlehttp/guzzle": "^6.2",
"dms/dms-filter-bundle": "^3.0",
"gedmo/doctrine-extensions": "^2.4",
"friendsofsymfony/rest-bundle": "^2.1",
"jms/serializer-bundle": "^1.1",
"lexik/jwt-authentication-bundle": "^2.1",
"nelmio/cors-bundle": "^1.5",
"nelmio/api-doc-bundle": "^2.13",
"league/fractal": "^0.13.0",
"pagerfanta/pagerfanta": "^1.0",
"middlewares/whoops": "^0.4.0"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0",
"hautelook/alice-bundle": "^1.4",
"phpunit/phpunit": "^6.0",
"doctrine/data-fixtures": "^1.2",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"doctrine/doctrine-migrations-bundle": "^1.1",
"mockery/mockery": "^0.9.9",
"brianium/paratest": "^0.13",
"squizlabs/php_codesniffer": "^2.7",
"friendsofphp/php-cs-fixer": "^2.0",
"fzaninotto/faker": "^1.6",
"sebastian/phpcpd": "^2.0",
"pdepend/pdepend": "^2.4",
"phpmd/phpmd": "^2.5",
"phploc/phploc": "^3.0",
"theseer/phpdox": "^0.9.0",
"phpstan/phpstan": "^0.6.4",
"phpspec/prophecy": "^1.7"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\"",
"php -r \"copy('phpunit.xml.dist', 'phpunit.xml');\""
],
"check": [
"@lint",
"@cs",
"@test"
],
"lint": "php -l *.php",
"cs": "vendor/bin/phpcs --standard=PSR2 *.php",
"cs-fix": "vendor/bin/php-cs-fixer --verbose --rules=@PSR2 fix *.php",
"test": "vendor/bin/phpunit --no-coverage",
"test-coverage": "vendor/bin/phpunit"
},
"archive": {
"exclude": [
".coveralls.yml",
".travis.yml",
"benchmark",
"build",
"phpunit.xml*",
"test"
]
}
}