-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from lar-dragon/master
Allow override files and development mode settings
- Loading branch information
Showing
7 changed files
with
294 additions
and
145 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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
language: php | ||
|
||
dist: trusty | ||
root: false | ||
|
||
env: | ||
global: | ||
- setup=stable | ||
|
||
cache: | ||
directories: | ||
- $HOME/.composer/cache | ||
|
||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- php: hhvm | ||
include: | ||
- php: 5.6 | ||
- php: 5.6 | ||
env: setup=lowest | ||
- php: 7.0 | ||
- php: 7.0 | ||
env: setup=lowest | ||
- php: 7.1 | ||
- php: 7.1 | ||
env: setup=lowest | ||
- php: 7.2 | ||
- php: 7.2 | ||
env: setup=lowest | ||
- php: hhvm | ||
- php: hhvm | ||
env: setup=lowest | ||
|
||
before_install: | ||
- travis_retry composer self-update | ||
- travis_retry composer config -g github-oauth.github.com "$GITHUB_TOKEN" | ||
|
||
install: | ||
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable --no-suggest; fi | ||
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable --no-suggest; fi | ||
|
||
script: composer run 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
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
Oops, something went wrong.