-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 980 Bytes
/
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
{
"name": "orbitale/api-bundle",
"description": "A Symfony bundle that generates webservices based on entities list.",
"keywords": ["api", "webservices", "symfony", "entity", "entities" ],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Alexandre Rock Ancelet",
"email": "alex@orbitale.io",
"homepage": "http://www.orbitale.io/"
}
],
"require": {
"php": ">=5.3.3",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"sensio/framework-extra-bundle": "~3.0",
"orbitale/entity-merger": "~0.3",
"jms/serializer": ">=0.16,<1",
"jms/serializer-bundle": "~0.13"
},
"require-dev": {
"symfony/symfony": "~2.3",
"phpunit/phpunit": "~4.4",
"satooshi/php-coveralls": "~0.6"
},
"autoload": {
"psr-4": {
"Orbitale\\Bundle\\ApiBundle\\": ""
}
}
}