-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 889 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 889 Bytes
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
{
"name": "oauth2-framework/core",
"type": "library",
"description": "Core Component for the OAuth2 Framework",
"license": "MIT",
"keywords": ["RFC6749", "oauth2", "framework", "authorization", "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": "*",
"beberlei/assert": "^3.2",
"thecodingmachine/safe": "^1.0"
},
"autoload": {
"psr-4": {
"OAuth2Framework\\Component\\Core\\": ""
}
},
"config": {
"sort-packages": true
}
}