-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.3 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
{
"name": "timrourke/incognito",
"description": "A suite of tools for working with AWS Cognito",
"keywords": ["aws", "cognito", "jwt", "token", "authentication"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tim Rourke",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-gmp": "*",
"ext-json": "*",
"ext-mbstring": "*",
"lib-openssl": "*",
"web-token/jwt-checker": "^1.0",
"web-token/jwt-core": "^1.0",
"web-token/jwt-signature": "^1.0",
"guzzlehttp/guzzle": "^6.3",
"psr/cache": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "1.0.1",
"aws/aws-sdk-php": "^3.52",
"beberlei/assert": "^2.9|^3.0"
},
"autoload": {
"psr-4": {
"Incognito\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Incognito\\UnitTests\\": "tests/UnitTests",
"Incognito\\FunctionalTests\\": "tests/FunctionalTests"
}
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/process": "^4.1",
"phpstan/phpstan": "^0.12.19",
"squizlabs/php_codesniffer": "^3.3"
}
}