-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.48 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
{
"name": "rezzza/symfony-rest-api-json",
"homepage": "https://github.com/rezzza/symfony-rest-api-json",
"description": "Stuff to let symfony app support JSON rest api operation",
"license": "MIT",
"authors": [
{
"name": "ReZzZa Team",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": { "Rezzza\\SymfonyRestApiJson\\": "src" }
},
"autoload-dev": {
"psr-4": { "Rezzza\\SymfonyRestApiJson\\Tests\\": "tests" }
},
"require": {
"symfony/http-kernel": "^2.8|^3.0|^4.0",
"symfony/http-foundation": "^2.8|^3.0|^4.0",
"symfony/debug": "^2.8|^3.0|^4.0",
"jakeasmith/http_build_url": "^1.0",
"justinrainbow/json-schema": ">=3.0 <6.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"require-dev": {
"atoum/atoum": "^3.1",
"fzaninotto/faker": "^1.5",
"league/tactician-bundle": "^0.4.1",
"symfony/serializer": "^3.0",
"symfony/validator": "^3.0",
"symfony/framework-bundle": "^3.0",
"rezzza/rest-api-behat-extension": "^6.0",
"php-http/curl-client": "^1.5",
"guzzlehttp/psr7": "^1.3"
},
"suggest": {
"league/tactician-bundle": "Support for ValidatorMiddleware of TacticianBundle",
"symfony/serializer": "Support for ValidatorMiddleware of TacticianBundle"
}
}