-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.14 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.14 KB
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
{
"name": "oauth2-framework/implicit-grant",
"type": "library",
"description": "Implicit Grant for the OAuth2 Framework",
"license": "MIT",
"keywords": ["RFC6749", "oauth2", "framework", "implicit", "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",
"oauth2-framework/authorization-endpoint": "^1.0",
"oauth2-framework/core": "^1.0",
"oauth2-framework/token-endpoint": "^1.0"
},
"suggest": {
"oauth2-framework/bearer-token-type": "To add Bearer token type (RFC6750).",
"oauth2-framework/mac-token-type": "To add MAC token type (abandoned specification)."
},
"autoload": {
"psr-4": {
"OAuth2Framework\\Component\\ImplicitGrant\\": ""
}
},
"config": {
"sort-packages": true
}
}