Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/bin/
composer.lock
composer.phar
.phpunit.result.cache
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@
### v1.0.1 - 2018-07-06

- Added support for API key based request.

### v1.0.2 - 2021-01-20

- Added Support for PHP 8
- Upgraded PHPUnit from v6 to v8
- Updated test classes with setUp() and tearDown() to match TestCase signatures
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
}
],
"require":{
"php": "~7.0"
"php": "~7.0|^8.0"
},
"require-dev":{
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "~6.0",
"phpunit/phpunit": "~8.0",
"squizlabs/php_codesniffer": "^3",
"phpro/grumphp": "^0.14.0"
},
Expand Down
Loading