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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
vendor
.project
.buildpath
.settings
.settings
composer.lock
15 changes: 6 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
language: php
php:
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly

- 7.0
- 8.0

before_script:
composer up
composer update

script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml tests/

after_success:
- travis_retry php vendor/bin/coveralls -v
- travis_retry php vendor/bin/php-coveralls -v
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
}
],
"require": {
"guzzlehttp/guzzle": "^6.2",
"php": ">=5.5"
"guzzlehttp/guzzle": "^6.2 || ^7.2",
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"mockery/mockery" : "0.9.5",
"satooshi/php-coveralls": "dev-master"
"phpunit/phpunit": "<8",
"mockery/mockery" : "*",
"php-coveralls/php-coveralls": "^2.4"
},
"autoload": {
"psr-4": {
Expand Down
Loading