Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Guzzle 6 support #12

Merged
merged 9 commits into from
Jan 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/vendor/
/build/
/docs/reference
/.idea
/composer.lock
14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
language: php
php:
- 7.0
- 5.6
- 5.5
- 5.4
- '5.6'
- '7.0'
- '7.1'
- '7.2'
- hhvm
- nightly

matrix:
allow_failures:
- php: 7.0
- php: nightly

branches:
only:
- /^v\d\.\d/

cache:
directories:
- vendor
- $HOME/.composer/cache/files

before_script:
- composer install --no-interaction
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v3.0.0 - 2017-12-12

- support for guzzle >6.0

## v2.2.0 - 2015-12-7
- **NEW META-13** Allow for 201 response on refund - *Joakim.L*

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
},
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": ">=4.2,<6.0"
"php": ">=5.6.0",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "4.2.*",
"phpunit/phpunit": "~5.0",
"squizlabs/php_codesniffer": "1.5.*",
"phpmd/phpmd": "2.1.*",
"phploc/phploc": "2.0.*",
"sebastian/phpcpd": "2.0.*",
"satooshi/php-coveralls": "0.6.*",
"apigen/apigen": "4.0.*",
"apigen/apigen": "~4.0",
"klarna/apigen-theme": "~1.0"
},
"scripts": {
Expand Down