Skip to content

Commit

Permalink
Drop PHP 7.2
Browse files Browse the repository at this point in the history
Upgraded Guzzle to version 7
Removed some redundant PhpDocs
  • Loading branch information
nickdnk committed May 9, 2021
1 parent 30dc374 commit 840a6f9
Show file tree
Hide file tree
Showing 16 changed files with 263 additions and 405 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea/
vendor/
.phpunit.result.cache
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: php
php:
- '7.1'
- '7.2'
- '7.3'
- '7.4'
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 4.0 - 2021-05-10
* [BC] Dropped support for PHP 7.1. No code changes required.
* Added compatibility with Guzzle 7.

## 3.1.0 - 2021-04-01
* Support for PHP 8.0.

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"description": "PHP library based on Guzzle for integration with gatewayapi.com",
"type": "library",
"require": {
"php": "^7.1 || ^8.0",
"php": "^7.2 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/oauth-subscriber": "0.3.*"
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"guzzlehttp/oauth-subscriber": "0.3.* || 0.4.* || 0.5.*"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"php-coveralls/php-coveralls": "^2.2"
},
"license": "mit",
Expand Down

0 comments on commit 840a6f9

Please sign in to comment.