forked from FriendsOfSymfony/FOSOAuthServerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (47 loc) · 1.6 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
48
{
"name": "friendsofsymfony/oauth-server-bundle",
"type": "symfony-bundle",
"description": "Symfony2 OAuth Server Bundle",
"keywords": ["oauth", "oauth2", "server"],
"homepage": "http://friendsofsymfony.github.com",
"license": "MIT",
"authors": [
{
"name": "Arnaud Le Blanc",
"email": "[email protected]"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/contributors"
}
],
"require": {
"php": ">=5.3.3",
"friendsofsymfony/oauth2-php": "~1.1.0",
"symfony/framework-bundle": "~2.2",
"symfony/security-bundle": "~2.1"
},
"require-dev": {
"symfony/class-loader": "~2.1",
"symfony/yaml": "~2.1",
"willdurand/propel-typehintable-behavior": "~1.0,>1.0.4",
"doctrine/mongodb-odm": "1.0.*@dev",
"doctrine/doctrine-bundle": "~1.0",
"doctrine/orm": ">=2.2,<2.5-dev"
},
"suggest": {
"doctrine/doctrine-bundle": "*",
"doctrine/mongodb-odm-bundle": "*",
"propel/propel-bundle": "If you want to use Propel with Symfony2, then you will have to install the PropelBundle",
"willdurand/propel-typehintable-behavior": "The Typehintable behavior is useful to add type hints on generated methods, to be compliant with interfaces"
},
"autoload": {
"psr-0": { "FOS\\OAuthServerBundle": "" }
},
"target-dir": "FOS/OAuthServerBundle",
"extra": {
"branch-alias": {
"dev-master": "1.4-dev"
}
}
}