-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
39 lines (39 loc) · 1.32 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
{
"name": "ecentria/ecentria-rest-bundle",
"type": "symfony-bundle",
"minimum-stability": "dev",
"description": "Goal of this bundle is to simplify process of creating APIs with Symfony. We use already well-coded libraries, combine them together to simplify process and not to re-invent the wheel. We've chose REST and HATEOS to have unified standards of API requests and responses.",
"keywords": [
"ecentria",
"library",
"rest"
],
"homepage": "https://github.com/ecentria/EcentriaRestBundle",
"license": "MIT",
"authors": [
{
"name": "Sergey Chernecov",
"email": "[email protected]"
}
],
"require": {
"php": "~7.0",
"symfony/symfony": "~2.7 || ~3.0",
"symfony/monolog-bundle": "~2.4 || ~3.0",
"sensio/framework-extra-bundle": "~3.0",
"friendsofsymfony/rest-bundle": "~1.4 || ~2.2",
"nelmio/api-doc-bundle": "~2.0",
"jms/serializer-bundle": "~0.13 || ~1.0 || ~2.3",
"doctrine/orm": "~2.3",
"gedmo/doctrine-extensions": "~2.4",
"willdurand/hateoas-bundle": "~0.3 || ~1.3"
},
"require-dev": {
"phpunit/phpunit": "^5.6"
},
"autoload": {
"psr-4": {
"Ecentria\\Libraries\\EcentriaRestBundle\\": ""
}
}
}