forked from hwi/HWIOAuthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
173 lines (161 loc) · 4.74 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
167
168
169
170
171
172
173
{
"name": "hwi/oauth-bundle",
"type": "symfony-bundle",
"homepage": "https://github.com/hwi/HWIOAuthBundle",
"license": "MIT",
"description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony.",
"keywords": [
"authentication",
"firewall",
"oauth",
"oauth1",
"oauth2",
"security",
"amazon",
"apple",
"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",
"xing",
"yahoo",
"yandex",
"youtube",
"37signals"
],
"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": "^7.4 || ^8.0",
"symfony/deprecation-contracts": "^2.5 || ^3.0",
"symfony/framework-bundle": "^4.4.20 || ^5.4 || ^6.1",
"symfony/security-bundle": "^4.4 || ^5.4 || ^6.1",
"symfony/options-resolver": "^4.4 || ^5.4 || ^6.1",
"symfony/form": "^4.4 || ^5.4 || ^6.1",
"symfony/templating": "^4.4 || ^5.4 || ^6.1",
"symfony/http-client": "^4.4 || ^5.4 || ^6.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.4",
"doctrine/orm": "^2.9",
"symfony/browser-kit": "^4.4.20 || ^5.4 || ^6.1",
"symfony/css-selector": "^4.4 || ^5.4 || ^6.1",
"symfony/phpunit-bridge": "^5.4 || ^6.1",
"symfony/property-access": "^4.4 || ^5.4 || ^6.1",
"symfony/validator": "^4.4 || ^5.4 || ^6.1",
"symfony/twig-bundle": "^4.4 || ^5.4 || ^6.1",
"symfony/stopwatch": "^5.4 || ^6.1",
"symfony/translation": "^4.4 || ^5.4 || ^6.1",
"symfony/yaml": "^4.4 || ^5.4 || ^6.1",
"phpunit/phpunit": "^9.5.12",
"friendsofphp/php-cs-fixer": "^3.2",
"symfony/monolog-bundle": "^3.4",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-symfony": "^1.0",
"phpstan/extension-installer": "^1.1",
"firebase/php-jwt": "^5.5"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
},
"conflict": {
"twig/twig": "<1.43|>=2.0,<2.13"
},
"scripts": {
"csfixer": "vendor/bin/php-cs-fixer fix --verbose --dry-run",
"csfixer-fix": "vendor/bin/php-cs-fixer fix --verbose",
"phpunit": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan"
},
"suggest": {
"doctrine/doctrine-bundle": "to use Doctrine user provider",
"firebase/php-jwt": "to use JWT utility functions",
"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\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HWI\\Bundle\\OAuthBundle\\Test\\": "src/Test/",
"HWI\\Bundle\\OAuthBundle\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}