forked from hwi/HWIOAuthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
121 lines (111 loc) · 2.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "hwi/oauth-bundle",
"type": "symfony-bundle",
"description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
"keywords": [
"authentication",
"firewall",
"oauth",
"oauth1",
"oauth2",
"security",
"amazon",
"bitbucket",
"bitly",
"box",
"bufferapp",
"dailymotion",
"deviantart",
"disqus",
"dropbox",
"eventbrite",
"facebook",
"fiware",
"flickr",
"foursquare",
"github",
"google",
"hubic",
"instagram",
"jira",
"linkedin",
"mail.ru",
"odnoklassniki",
"qq",
"salesforce",
"sensio connect",
"stack exchange",
"stereomood",
"sina weibo",
"spotify",
"trello",
"twitch",
"twitter",
"vkontakte",
"wechat",
"windows live",
"wordpress",
"yahoo",
"yandex",
"37signals"
],
"homepage": "http://github.com/hwi/HWIOAuthBundle",
"license": "MIT",
"authors": [
{
"name": "Alexander",
"email": "iam.asm89@gmail.com"
},
{
"name": "Joseph Bielawski",
"email": "stloyd@gmail.com"
},
{
"name": "Geoffrey Bachelet",
"email": "geoffrey.bachelet@gmail.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.3",
"symfony/security-bundle": "~2.3",
"symfony/options-resolver": "~2.3",
"symfony/form": "~2.3",
"symfony/yaml": "~2.3",
"kriswallsmith/buzz": "~0.13"
},
"conflict": {
"twig/twig": "<1.12"
},
"require-dev": {
"doctrine/orm": "~2.3",
"symfony/property-access": "~2.3",
"symfony/validator": "~2.3",
"symfony/twig-bundle": "~2.3",
"symfony/phpunit-bridge": "~2.7",
"friendsofsymfony/user-bundle": "~1.3|~2.0"
},
"suggest": {
"doctrine/doctrine-bundle": "to use Doctrine user provider",
"friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
"symfony/property-access": "to use FOSUB integration with this bundle",
"symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
},
"autoload": {
"psr-0": {
"HWI\\Bundle\\OAuthBundle\\": ""
}
},
"target-dir": "HWI/Bundle/OAuthBundle",
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
}
}
}