-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 931 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
{
"name": "yasuaki640/cognito-srp-php",
"description": "Helper written by PHP to get through SRP authentication for Amazon Cognito.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"CognitoSrpPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CognitoSrpPhp\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Yasuaki Watanabe",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix ."
},
"require": {
"php": "^8.3",
"aws/aws-sdk-php": "^3.323",
"phpseclib/phpseclib": "^3.0",
"nesbot/carbon": "^3.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.4"
}
}