forked from hwi/HWIOAuthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
166 lines (155 loc) · 4.47 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"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",
"asana",
"auth0",
"azure",
"bitbucket",
"bitly",
"box",
"bufferapp",
"clever",
"dailymotion",
"deezer",
"deviantart",
"discogs",
"disqus",
"dropbox",
"eventbrite",
"eve online",
"facebook",
"fiware",
"flickr",
"foursquare",
"genius",
"github",
"gitlab",
"google",
"hubic",
"instagram",
"jawbone",
"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",
"windows live",
"wordpress",
"wunderlist",
"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": "^7.2",
"symfony/framework-bundle": "^3.4.26|^4.3|^5.0",
"symfony/security-bundle": "^3.4|^4.3|^5.0",
"symfony/options-resolver": "^3.4|^4.3|^5.0",
"symfony/form": "^3.4|^4.3|^5.0",
"symfony/yaml": "^3.4|^4.3|^5.0",
"symfony/templating": "^3.4|^4.3|^5.0",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^2.0",
"php-http/client-common": "^2.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"doctrine/orm": "^2.3",
"symfony/browser-kit": "^3.4|^4.3|^5.0",
"symfony/css-selector": "^3.4|^4.3|^5.0",
"symfony/property-access": "^3.4|^4.3|^5.0",
"symfony/validator": "^3.4|^4.3|^5.0",
"symfony/twig-bundle": "^3.4|^4.3|^5.0",
"symfony/stopwatch": "^3.4|^4.3|^5.0",
"symfony/phpunit-bridge": "^5.0",
"symfony/translation": "^3.4|^4.3|^5.0",
"friendsofsymfony/user-bundle": "^2.1",
"php-http/httplug-bundle": "^1.7",
"php-http/guzzle6-adapter": "^2.0",
"phpunit/phpunit": "^7.5|^8.0",
"friendsofphp/php-cs-fixer": "^2.0",
"symfony/monolog-bundle": "^3.4",
"doctrine/doctrine-bundle": "^1.11|^2.0"
},
"conflict": {
"twig/twig": "<1.34"
},
"suggest": {
"doctrine/doctrine-bundle": "to use Doctrine user provider",
"friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
"php-http/httplug-bundle": "to provide required HTTP client with ease.",
"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\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"HWI\\Bundle\\OAuthBundle\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
}
}