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
22 changes: 13 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
vendor/*
coverage/*
composer.phar
phpunit.xml
.idea
Gemfile
Gemfile.lock
autotest.rb
Dockerfile
*
!docs/*
!src/*
!tests/*
!.gitignore
!.travis.yml
!CHANGELOG.md
!composer.json
!composer.lock
!LICENSE
!mkdocs.yml
!phpunit.xml.distl
!README.md
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ dist: trusty
language: php
sudo: false
php:
- "5.5"
- "5.6"
- "7"
- "8.1"
install:
- composer install
- composer dump-autoload -o
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
}
],
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "^6.0 || ^7.0"
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5.0"
},
"require-dev": {
"phpunit/phpunit": "4.7.*",
"satooshi/php-coveralls": "1.0.1"
"phpunit/phpunit": "^9.5.0",
"satooshi/php-coveralls": "1.0.1",
"vimeo/psalm": "^4.27"
},
"autoload": {
"psr-4": {
Expand Down
Loading