timrourke/incognito

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
"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": "tim@timrourke.com"
}
],
"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"
}
}