Skip to content

Commit

Permalink
Add Laravel 5.8 compatibility / Upgrade PHPUnit / Drop PHP 7.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
timopruesse committed Mar 2, 2019
1 parent 82bbcd8 commit eeced03
Show file tree
Hide file tree
Showing 6 changed files with 360 additions and 242 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
vendor
cache
cache
.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'
- 'nightly'
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip

----------

## 4.0.0

### Added
- Compatibility with Laravel / Illuminate 5.8
- Upgraded PHPUnit to version 8

### Removed
- Dropped support for PHP 7.1

----------

## 3.1.0

- Changed the cached representation of the response
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
}
],
"require": {
"php": "^7.1",
"hamburgscleanest/guzzle-advanced-throttle": "^3.1.0",
"illuminate/support": "^5.7"
"php": "^7.2",
"hamburgscleanest/guzzle-advanced-throttle": "^4.0.0",
"illuminate/support": "^5.8.2"
},
"require-dev": {
"phpunit/phpunit": "~6|~7",
"phpunit/phpunit": "^8.0.4",
"orchestra/testbench": "^3",
"mockery/mockery": "^1.0"
},
Expand Down
Loading

0 comments on commit eeced03

Please sign in to comment.