forked from hwi/HWIOAuthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (45 loc) · 1.53 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
{
"name": "hwi/oauth-bundle",
"type": "symfony-bundle",
"description": "Support for authenticating users via oauth in Symfony2.",
"keywords": ["security", "firewall", "oauth", "facebook", "oauth2", "github", "google", "windows live", "vkontakte", "oauth1", "twitter", "linkedin", "sensio connect"],
"homepage": "http://github.com/hwi/HWIOAuthBundle",
"license": "MIT",
"authors": [
{
"name": "Alexander",
"email": "[email protected]"
},
{
"name": "Geoffrey Bachelet",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.0,<2.2-dev",
"symfony/security-bundle": ">=2.0,<2.2-dev",
"kriswallsmith/buzz": "0.7"
},
"require-dev": {
"doctrine/orm": "*",
"symfony/validator": ">=2.0,<2.2-dev",
"friendsofsymfony/user-bundle": "*",
"symfony/twig-bundle": "*"
},
"suggest": {
"doctrine/doctrine-bundle": "to use Doctrine user provider",
"friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
"symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
},
"autoload": {
"psr-0": {
"HWI\\Bundle\\OAuthBundle": ""
}
},
"target-dir": "HWI/Bundle/OAuthBundle"
}