Skip to content
Open

Php8 #55

Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
language: php
rvm:
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2

install:
- composer install --no-interaction
57 changes: 32 additions & 25 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,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": "[email protected]"
"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": "[email protected]"
}
],
"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"
}
],
"require": {
"aws/aws-sdk-php": "^3.26",
"web-token/jwt-signature": "^1.0"
},
"autoload": {
"psr-4": {
"pmill\\AwsCognito\\": "src/",
"pmill\\AwsCognito\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"fzaninotto/faker": "^1.8"
}
}
}
Loading