-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.12 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
{
"name": "oauth2-framework/webfinger-endpoint",
"type": "library",
"description": "Issuer Discovery Endpoint for the OAuth2 Framework",
"license": "MIT",
"keywords": ["RFC7033", "webfinger", "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",
"ext-json": "*",
"league/uri": "^5.3",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"suggest": {
"oauth2-framework/issuer-discovery-endpoint": "For Issuer discovery (OpenID Connect)."
},
"autoload": {
"psr-4": {
"OAuth2Framework\\Component\\WebFingerEndpoint\\": ""
}
},
"config": {
"sort-packages": true
}
}