-
-
Notifications
You must be signed in to change notification settings - Fork 128
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 #279 from jeremykendall/develop
Prepare 5.7.0 release
- Loading branch information
Showing
37 changed files
with
943 additions
and
605 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 |
---|---|---|
|
@@ -7,3 +7,4 @@ docs | |
build | ||
.idea | ||
.php_cs.cache | ||
.phpunit.result.cache |
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,64 +1,63 @@ | ||
language: php | ||
|
||
sudo: false | ||
|
||
cache: | ||
directories: | ||
- $HOME/.composer/cache | ||
|
||
env: | ||
global: | ||
- COMPOSER_ARGS="--no-interaction --prefer-source --no-suggest" | ||
|
||
directories: | ||
- "$HOME/.composer/cache" | ||
matrix: | ||
include: | ||
- php: 7.0 | ||
env: | ||
- VALIDATE_CODING_STYLE=false | ||
- RUN_PHPSTAN=false | ||
- IGNORE_PLATFORMS=false | ||
- php: 7.1 | ||
env: | ||
- VALIDATE_CODING_STYLE=false | ||
- RUN_PHPSTAN=false | ||
- IGNORE_PLATFORMS=false | ||
- php: 7.2 | ||
env: | ||
- VALIDATE_CODING_STYLE=true | ||
- RUN_PHPSTAN=true | ||
- IGNORE_PLATFORMS=false | ||
- php: 7.3 | ||
env: | ||
- VALIDATE_CODING_STYLE=false | ||
- RUN_PHPSTAN=false | ||
- IGNORE_PLATFORMS=true | ||
- php: 7.4 | ||
env: | ||
- COLLECT_COVERAGE=false | ||
- VALIDATE_CODING_STYLE=false | ||
- RUN_PHPSTAN=false | ||
- IGNORE_PLATFORMS=true | ||
- php: nightly | ||
env: | ||
- COLLECT_COVERAGE=false | ||
- IGNORE_PLATFORMS=true | ||
- RUN_PHPSTAN=false | ||
- VALIDATE_CODING_STYLE=false | ||
allow_failures: | ||
- php: nightly | ||
fast_finish: true | ||
|
||
include: | ||
- php: 7.2 | ||
env: | ||
- COLLECT_COVERAGE=false | ||
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source --prefer-lowest --prefer-stable" | ||
- RUN_PHPSTAN=false | ||
- VALIDATE_CODING_STYLE=false | ||
- php: 7.2 | ||
env: | ||
- COLLECT_COVERAGE=true | ||
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source" | ||
- RUN_PHPSTAN=true | ||
- VALIDATE_CODING_STYLE=true | ||
- php: 7.3 | ||
env: | ||
- COLLECT_COVERAGE=false | ||
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source --prefer-lowest --prefer-stable" | ||
- RUN_PHPSTAN=false | ||
- VALIDATE_CODING_STYLE=false | ||
- php: 7.3 | ||
env: | ||
- COLLECT_COVERAGE=true | ||
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source" | ||
- RUN_PHPSTAN=true | ||
- VALIDATE_CODING_STYLE=true | ||
- php: 7.4 | ||
env: | ||
- COLLECT_COVERAGE=false | ||
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source --prefer-lowest --prefer-stable" | ||
- RUN_PHPSTAN=false | ||
- VALIDATE_CODING_STYLE=false | ||
- php: 7.4 | ||
env: | ||
- COLLECT_COVERAGE=true | ||
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source" | ||
- RUN_PHPSTAN=true | ||
- VALIDATE_CODING_STYLE=true | ||
- php: nightly | ||
env: | ||
- COLLECT_COVERAGE=false | ||
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source --ignore-platform-reqs" | ||
- RUN_PHPSTAN=false | ||
- VALIDATE_CODING_STYLE=false | ||
allow_failures: | ||
- php: nightly | ||
fast_finish: true | ||
before_install: | ||
- travis_retry composer self-update | ||
|
||
- travis_retry composer self-update | ||
install: | ||
- if [ "$IGNORE_PLATFORMS" == "true" ]; then travis_retry composer update $COMPOSER_ARGS --ignore-platform-reqs; fi | ||
- if [ "$IGNORE_PLATFORMS" == "false" ]; then travis_retry composer update $COMPOSER_ARGS; fi | ||
|
||
- travis_retry composer update $COMPOSER_ARGS | ||
script: | ||
- if [ "$RUN_PHPSTAN" == "true" ]; then composer phpstan; fi | ||
- if [ "$VALIDATE_CODING_STYLE" == "true" ]; then composer phpcs; fi | ||
- composer phpunit | ||
|
||
- if [ "$VALIDATE_CODING_STYLE" == "true" ]; then composer phpcs; fi | ||
- if [ "$RUN_PHPSTAN" == "true" ]; then composer phpstan; fi | ||
- composer phpunit | ||
after_script: | ||
- if [ "$COLLECT_COVERAGE" == "true" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/clover.xml; fi | ||
- if [ "$COLLECT_COVERAGE" == "true" ]; then wget https://scrutinizer-ci.com/ocular.phar | ||
&& php ocular.phar code-coverage:upload --format=php-clover build/clover.xml; 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
Oops, something went wrong.