-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.21 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "da/api-server-bundle",
"type": "symfony-bundle",
"description": "DaApiServerBundle is a Symfony2's bundle allowing to provide a REST API in a simple and secure way",
"keywords": ["api", "server", "bundle", "da", "Symfony"],
"homepage": "https://github.com/Gnuckorg/DaApiServerBundle",
"license": "MIT",
"authors": [
{
"name": "Thomas Prelot",
"email": "tprelot@gmail.com"
}
],
"require": {
"php": ">=5.3.3",
"symfony/dependency-injection" : ">=2.1",
"symfony/config" : ">=2.1",
"da/auth-common-bundle": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"doctrine/doctrine-bundle": "1.2.*",
"doctrine/mongodb-odm": "dev-master",
"doctrine/orm": ">=2.2.3"
},
"suggest": {
"da/api-client-bundle": "Allow to connect to a remote SSO server",
"doctrine/doctrine-bundle": "Allow to use the lexer",
"doctrine/mongodb-odm": "Allow to use the lexer",
"doctrine/orm": "Allow to use the lexer"
},
"autoload": {
"psr-0": { "Da\\ApiServerBundle": "" }
},
"minimum-stability": "dev",
"target-dir": "Da/ApiServerBundle"
}