forked from danielstjules/Stringy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
823e50a
commit 5a46296
Showing
2 changed files
with
39 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,14 +1,48 @@ | ||
language: php | ||
|
||
php: | ||
- 5.6 | ||
- 5.5 | ||
- 5.4 | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- hhvm | ||
|
||
# This triggers builds to run on the new TravisCI infrastructure. | ||
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ | ||
sudo: false | ||
|
||
install: travis_retry composer install --no-interaction --prefer-source | ||
matrix: | ||
fast_finish: true | ||
include: | ||
- php: 5.3 | ||
env: polyfill='true' | ||
- php: 5.3 | ||
env: polyfill='false' | ||
- php: 5.4 | ||
env: polyfill='true' | ||
- php: 5.4 | ||
env: polyfill='false' | ||
- php: 5.5 | ||
env: polyfill='true' | ||
- php: 5.5 | ||
env: polyfill='false' | ||
- php: 5.6 | ||
env: polyfill='true' | ||
- php: 5.6 | ||
env: polyfill='false' | ||
- php: 7.0 | ||
env: polyfill='true' | ||
- php: 7.0 | ||
env: polyfill='false' | ||
|
||
install: travis_retry composer install --no-interaction --prefer-source | ||
|
||
before_script: | ||
- travis_retry composer self-update | ||
- travis_retry composer install --no-interaction --prefer-source | ||
- if [[ $polyfill = 'false' ]]; then travis_retry composer remove symfony/polyfill-mbstring; fi | ||
|
||
script: | ||
- vendor/bin/phpunit | ||
|
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