forked from modethirteen/AuthForge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.59 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.2.0",
"modethirteen/fluent-cache": "^1.1.0",
"modethirteen/hyperplug": "^1.1.2",
"modethirteen/miniflex": "0.1.0",
"modethirteen/type-ex": "^1.2.0",
"modethirteen/xarray": "^1.2.3",
"psr/http-message": "^1.0.1",
"psr/event-dispatcher": "^1.0.0",
"psr/log": "^1.1.3",
"ramsey/uuid": "~4.1.1",
"robrichards/xmlseclibs": "~3.1.1",
"symfony/event-dispatcher-contracts": "^2.2.0",
"web-token/jwt-checker": "~2.2.6",
"web-token/jwt-core": "~2.2.6",
"web-token/jwt-key-mgmt": "~2.2.6",
"web-token/jwt-signature": "~2.2.6",
"web-token/jwt-signature-algorithm-ecdsa": "~2.2.6",
"web-token/jwt-signature-algorithm-hmac": "~2.2.6",
"web-token/jwt-signature-algorithm-rsa": "~2.2.6"
},
"require-dev": {
"phpstan/phpstan": "~0.12.0",
"phpunit/phpunit": "~7.4.0"
},
"autoload": {
"psr-4": {
"modethirteen\\AuthForge\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"modethirteen\\AuthForge\\Tests\\": ["tests/"]
}
}
}