-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
48 lines (48 loc) · 927 Bytes
/
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
44
45
46
47
48
{
"name": "ezralazuardy/heimdall",
"description": "Painless OAuth 2.0 Server for CodeIgniter 4",
"homepage": "https://github.com/ezralazuardy/heimdall",
"license": "MIT",
"require": {
"php": ">=8.1",
"codeigniter4/framework": "^4.0",
"league/oauth2-server": "^8.1",
"laminas/laminas-diactoros": "^3.3.1",
"steverhoades/oauth2-openid-connect-server": "^2.0"
},
"keywords": [
"oauth",
"oauth2",
"oauth 2",
"oauth 2.0",
"server",
"auth",
"authorization",
"authentication",
"resource",
"rest",
"rest api",
"api",
"auth",
"protect",
"secure",
"heimdall",
"codeigniter",
"codeginiter4",
"codeigniter 4",
"ci",
"ci4",
"codeigniter oauth"
],
"authors": [
{
"name": "Ezra Lazuardy",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Heimdall\\": "src/"
}
}
}