forked from hwi/HWIOAuthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
135 lines (126 loc) · 3.25 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "hwi/oauth-bundle",
"type": "symfony-bundle",
"homepage": "http://github.com/hwi/HWIOAuthBundle",
"license": "MIT",
"description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
"keywords": [
"authentication",
"firewall",
"oauth",
"oauth1",
"oauth2",
"security",
"amazon",
"auth0",
"azure",
"bitbucket",
"bitly",
"box",
"bufferapp",
"dailymotion",
"deezer",
"deviantart",
"discogs",
"disqus",
"dropbox",
"eventbrite",
"eve online",
"facebook",
"fiware",
"flickr",
"foursquare",
"github",
"google",
"hubic",
"instagram",
"jira",
"linkedin",
"mail.ru",
"odnoklassniki",
"paypal",
"qq",
"reddit",
"runkeeper",
"salesforce",
"sensio connect",
"sina weibo",
"slack",
"sound cloud",
"spotify",
"stack exchange",
"stereomood",
"strava",
"toshl",
"trakt",
"trello",
"twitch",
"twitter",
"vkontakte",
"wechat",
"windows live",
"wordpress",
"xing",
"yahoo",
"yandex",
"youtube",
"37signals"
],
"authors": [
{
"name": "Alexander",
"email": "[email protected]"
},
{
"name": "Joseph Bielawski",
"email": "[email protected]"
},
{
"name": "Geoffrey Bachelet",
"email": "[email protected]"
},
{
"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",
"phpunit/phpunit": "~4.8"
},
"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-4": {
"HWI\\Bundle\\OAuthBundle\\": ""
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
}
}
}