-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PHP 7 exclusive (#45) * Update mock-client and guzzle adapter * Remove phpunit exception annotations * Make php7 exclusive * Fix tests * Remove php5 references * Revert nightly build removal * Update composer.json Co-Authored-By: Hassansin <[email protected]> * Include php 7.x test support * Fix Travis Build on php 7.1 [ch14742] (#46) * install phpunit 7 when testing on php 7.1 * fix shell if condition * revert composer.json changes * Updated dependencies & Remove outdated docs [ch14742] (#47) * Updated dependencies and removed outdated docs * Updated README * Updated README & Added nightly build
- Loading branch information
Showing
60 changed files
with
49 additions
and
15,903 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
language: php | ||
php: | ||
- '5.5' | ||
- '5.6' | ||
- '7.1' | ||
- '7.2' | ||
- '7.3' | ||
- nightly | ||
|
||
before_script: | ||
- composer install | ||
- | | ||
if [[ "$TRAVIS_PHP_VERSION" == 'nightly' ]]; then | ||
#ignore php version check on nightly build | ||
composer install --ignore-platform-reqs | ||
else | ||
composer install | ||
fi | ||
- if [[ "$TRAVIS_PHP_VERSION" == '7.1' ]]; then composer require phpunit/phpunit:^7; fi | ||
|
||
script: | ||
- phpunit | ||
- | | ||
if [[ "$TRAVIS_PHP_VERSION" == '7.1' ]]; then | ||
vendor/bin/phpunit | ||
else | ||
phpunit | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.