-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makes verbal expressions compatible with older versions
* fixing #28 makes VerbalExpressions compatible with 5.3-5.5 as well * fixing requirements in composer.json * just to re-trigger a build let's pray travis doesn't fail downloading a php-version this time.
- Loading branch information
Showing
4 changed files
with
26 additions
and
6 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,4 +1,7 @@ | ||
# General Ignores | ||
/vendor | ||
composer.lock | ||
/phpunit/ | ||
# IDEs | ||
.idea/ | ||
/nbproject/ |
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,11 +1,27 @@ | ||
language: php | ||
php: | ||
- '5.4' | ||
- '5.5' | ||
- '5.6' | ||
- '7.0' | ||
- '7.1' | ||
- '7.2' | ||
- hhvm | ||
- nightly | ||
matrix: | ||
include: | ||
- php: "5.3" | ||
dist: precise | ||
git: | ||
#there should rarely be a need to clone 50 deep, so this is just reducing build-time | ||
depth: 5 | ||
before_script: | ||
# no need to provide coverage more than once and no need for the speedbump otherwise | ||
- if [[ ${TRAVIS_PHP_VERSION:0:3} != "7.1" ]]; then phpenv config-rm xdebug.ini || true ; fi | ||
# no need to test formatting more than once and php_codesniffer does not work with older php | ||
- if [[ ${TRAVIS_PHP_VERSION:0:3} != "5.6" ]]; then composer remove --dev squizlabs/php_codesniffer ; fi | ||
- composer install | ||
script: | ||
- composer check-style | ||
- composer test | ||
# since it's disabled otherwise... | ||
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.6" ]]; then composer check-style ; fi | ||
- composer test |
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