-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.71 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.71 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
37
38
39
40
41
42
43
44
{
"name": "oauth2-framework/authorization-endpoint",
"type": "library",
"description": "Authorization Endpoint for the OAuth2 Framework",
"license": "MIT",
"keywords": ["RFC6749", "oauth2", "framework", "authorization", "endpoint", "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",
"league/uri": "^5.3",
"oauth2-framework/core": "^1.0",
"oauth2-framework/client-authentication": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"suggest": {
"oauth2-framework/openid-connect": "To add an authentication layer on top of the authorization server.",
"oauth2-framework/client-rule": "To use of the client registration/configuration rules provided by this component.",
"php-http/httplug": "To use of the Sector Identifier Uri client registration/configuration rule provided by this component.",
"oauth2-framework/authorization-code-grant": "The Authorization Code grant type",
"oauth2-framework/implicit-grant": "The Implicit grant type",
"oauth2-framework/none-grant": "The None grant type"
},
"autoload": {
"psr-4": {
"OAuth2Framework\\Component\\AuthorizationEndpoint\\": ""
}
},
"config": {
"sort-packages": true
}
}