-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.46 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
{
"name": "oauth2-framework/security-bundle",
"type": "symfony-bundle",
"description": "Security Bundle for the OAuth2 Framework",
"license": "MIT",
"keywords": ["RFC6749", "oauth2", "framework", "security", "bundle", "grant", "library"],
"homepage": "https://oauth2-framework.spomky-labs.com/",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},
{
"name": "All contributors",
"homepage": "https://github.com/OAuth2-Framework/oauth2-framework/contributors"
}
],
"require": {
"php": "^7.4|^8.0",
"doctrine/common": "^2.8|^3.0",
"oauth2-framework/core": "^1.0",
"sensio/framework-extra-bundle": "^5.0",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/psr-http-message-bridge": "^1.0|^2.0",
"symfony/routing": "^5.0",
"symfony/security-bundle": "^5.0"
},
"suggest": {
"symfony/security-bundle": "Mandatory when resource owners can be end users.",
"oauth2-framework/bearer-token-type": "Bearer token type support (recommended).",
"oauth2-framework/mac-token-type": "MAC token type support (experimental)."
},
"autoload": {
"psr-4": {
"OAuth2Framework\\SecurityBundle\\": ""
}
},
"config": {
"sort-packages": true
}
}