-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "modethirteen/authforge",
"description": "A collection of components to integrate industry-standard authentication and authorization",
"type": "library",
"license": "Apache-2.0",
"authors" : [
{
"name": "James Andrew Vaughn",
"email": "jamesvaughn@modethirteen.com",
"role": "maintainer"
}
],
"support": {
"issues": "https://github.com/modethirteen/AuthForge/issues"
},
"require": {
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-gmp": "*",
"ext-openssl": "*",
"ext-zlib": "*",
"php": "^7.4.0",
"modethirteen/fluent-cache": "dev-main",
"modethirteen/hyperplug": "dev-main",
"modethirteen/miniflex": "dev-main",
"modethirteen/type-ex": "dev-main",
"modethirteen/xarray": "dev-main",
"psr/http-message": "^1.0.1",
"psr/event-dispatcher": "^1.0.0",
"psr/log": "^1.1.4",
"ramsey/uuid": "~4.1.1",
"robrichards/xmlseclibs": "~3.1.1",
"symfony/event-dispatcher-contracts": "^2.4.0",
"web-token/jwt-checker": "~2.2.11",
"web-token/jwt-core": "~2.2.11",
"web-token/jwt-key-mgmt": "~2.2.11",
"web-token/jwt-signature": "~2.2.11",
"web-token/jwt-signature-algorithm-ecdsa": "~2.2.11",
"web-token/jwt-signature-algorithm-hmac": "~2.2.11",
"web-token/jwt-signature-algorithm-rsa": "~2.2.11"
},
"require-dev": {
"phpstan/phpstan": "~0.12.99",
"phpunit/phpunit": "~9.4.4"
},
"autoload": {
"psr-4": {
"modethirteen\\AuthForge\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"modethirteen\\AuthForge\\Tests\\": ["tests/"]
}
}
}