forked from FriendsOfSymfony/FOSOAuthServerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 2.01 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
49
50
51
52
53
54
55
56
{
"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": "arnaud.lb@gmail.com"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/contributors"
}
],
"require": {
"php": "^7.1",
"friendsofsymfony/oauth2-php": "~1.1",
"symfony/framework-bundle": "~3.0|^4.0",
"symfony/security-bundle": "~3.0|^4.0",
"symfony/dependency-injection": "^2.8|~3.0|^4.0"
},
"require-dev": {
"symfony/class-loader": "~3.0|^4.0",
"symfony/yaml": "~3.0|^4.0",
"symfony/form": "~3.0|^4.0",
"symfony/console": "~3.0|^4.0",
"symfony/templating": "~3.0|^4.0",
"willdurand/propel-typehintable-behavior": "^1.0.4",
"propel/propel1": "^1.6.5",
"phing/phing": "~2.4",
"doctrine/mongodb-odm": "~1.0",
"doctrine/doctrine-bundle": "~1.0",
"doctrine/orm": "~2.2",
"phpunit/phpunit": "~4.8|~5.0"
},
"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",
"symfony/form" : "Needed to be able to use the AuthorizeFormType",
"symfony/console": "Needed to be able to use commands"
},
"autoload": {
"psr-4": { "FOS\\OAuthServerBundle\\": "" },
"exclude-from-classmap": ["/Tests/"]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}