Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merging release-3.0.0 to develop; next feature release after 2.2.0 wi…
Browse files Browse the repository at this point in the history
…ll be 3.0.0
  • Loading branch information
weierophinney committed Mar 12, 2018
2 parents 073a4d6 + 47620f2 commit 942454f
Show file tree
Hide file tree
Showing 211 changed files with 13,875 additions and 5,375 deletions.
4 changes: 3 additions & 1 deletion .docheader
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/**
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
* @copyright Copyright (c) %regexp:(20\d{2}-)?20\d{2}% Zend Technologies USA Inc. (http://www.zend.com)
* @copyright Copyright (c) %regexp:(20\d{2}-)?20\d{2}% Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);
27 changes: 3 additions & 24 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,6 @@ env:

matrix:
include:
- php: 5.6
env:
- DEPS=lowest
- LEGACY_DEPS="phpunit/phpunit malukenho/docheader"
- php: 5.6
env:
- DEPS=locked
- LEGACY_DEPS="phpunit/phpunit malukenho/docheader"
- php: 5.6
env:
- DEPS=latest
- LEGACY_DEPS="phpunit/phpunit malukenho/docheader"
- php: 7
env:
- DEPS=lowest
- php: 7
env:
- DEPS=locked
- LEGACY_DEPS="phpunit/phpunit symfony/console symfony/debug symfony/finder"
- php: 7
env:
- DEPS=latest
- php: 7.1
env:
- DEPS=lowest
Expand All @@ -52,6 +30,7 @@ matrix:
- php: 7.2
env:
- DEPS=locked
- PHPSTAN_CHECK=true
- php: 7.2
env:
- DEPS=latest
Expand All @@ -60,8 +39,7 @@ before_install:
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi

install:
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
- if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
- travis_retry composer install $COMPOSER_ARGS
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
Expand All @@ -73,6 +51,7 @@ script:
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
- if [[ $CS_CHECK == 'true' ]]; then composer license-check ; fi
- if [[ $PHPSTAN_CHECK == 'true' ]]; then composer phpstan ; fi

after_script:
- if [[ $TEST_COVERAGE == 'true' ]]; then vendor/bin/php-coveralls -v ; fi
Expand Down
Loading

0 comments on commit 942454f

Please sign in to comment.