forked from pmill/aws-cognito
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
34 lines (34 loc) · 813 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
{
"name": "pmill/aws-cognito",
"description": "A PHP client for AWS Cognito user pools",
"keywords": [
"php",
"authentication",
"aws",
"cognito",
"api"
],
"homepage": "https://github.com/pmill/aws-cognito",
"license": "MIT",
"authors": [
{
"name": "pmill",
"email": "dev.pmill@gmail.com"
}
],
"require": {
"aws/aws-sdk-php": "^3.26",
"web-token/jwt-signature": "^3.1.7",
"web-token/jwt-signature-algorithm-rsa": "^3.1.7"
},
"autoload": {
"psr-4": {
"pmill\\AwsCognito\\": "src/",
"pmill\\AwsCognito\\Tests\\": "tests/"
}
},
"require-dev": {
"fakerphp/faker": "^1.21",
"phpunit/phpunit": "^9.0"
}
}