forked from hwi/HWIOAuthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (54 loc) · 1.84 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
57
58
59
60
61
{
"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", "yahoo"],
"homepage": "http://github.com/hwi/HWIOAuthBundle",
"license": "MIT",
"authors": [
{
"name": "Alexander",
"email": "iam.asm89@gmail.com"
},
{
"name": "Joseph Bielawski",
"email": "stloyd+gh@gmail.com"
},
{
"name": "Geoffrey Bachelet",
"email": "geoffrey.bachelet@gmail.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.0,<2.3-dev",
"symfony/security-bundle": ">=2.0,<2.3-dev",
"kriswallsmith/buzz": "~0.7"
},
"require-dev": {
"doctrine/orm": ">=2.1,<2.4-dev",
"symfony/validator": ">=2.0,<2.3-dev",
"symfony/twig-bundle": ">=2.0,<2.3-dev",
"friendsofsymfony/user-bundle": "~1.2"
},
"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",
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
}
}
}