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

Commit 942454f

Browse files
committed
Merging release-3.0.0 to develop; next feature release after 2.2.0 will be 3.0.0
2 parents 073a4d6 + 47620f2 commit 942454f

File tree

211 files changed

+13875
-5375
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+13875
-5375
lines changed

.docheader

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/**
22
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
3-
* @copyright Copyright (c) %regexp:(20\d{2}-)?20\d{2}% Zend Technologies USA Inc. (http://www.zend.com)
3+
* @copyright Copyright (c) %regexp:(20\d{2}-)?20\d{2}% Zend Technologies USA Inc. (https://www.zend.com)
44
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
55
*/
6+
7+
declare(strict_types=1);

.travis.yml

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,6 @@ env:
1313

1414
matrix:
1515
include:
16-
- php: 5.6
17-
env:
18-
- DEPS=lowest
19-
- LEGACY_DEPS="phpunit/phpunit malukenho/docheader"
20-
- php: 5.6
21-
env:
22-
- DEPS=locked
23-
- LEGACY_DEPS="phpunit/phpunit malukenho/docheader"
24-
- php: 5.6
25-
env:
26-
- DEPS=latest
27-
- LEGACY_DEPS="phpunit/phpunit malukenho/docheader"
28-
- php: 7
29-
env:
30-
- DEPS=lowest
31-
- php: 7
32-
env:
33-
- DEPS=locked
34-
- LEGACY_DEPS="phpunit/phpunit symfony/console symfony/debug symfony/finder"
35-
- php: 7
36-
env:
37-
- DEPS=latest
3816
- php: 7.1
3917
env:
4018
- DEPS=lowest
@@ -52,6 +30,7 @@ matrix:
5230
- php: 7.2
5331
env:
5432
- DEPS=locked
33+
- PHPSTAN_CHECK=true
5534
- php: 7.2
5635
env:
5736
- DEPS=latest
@@ -60,8 +39,7 @@ before_install:
6039
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
6140

6241
install:
63-
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
64-
- if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
42+
- travis_retry composer install $COMPOSER_ARGS
6543
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
6644
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
6745
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
@@ -73,6 +51,7 @@ script:
7351
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
7452
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
7553
- if [[ $CS_CHECK == 'true' ]]; then composer license-check ; fi
54+
- if [[ $PHPSTAN_CHECK == 'true' ]]; then composer phpstan ; fi
7655

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

0 commit comments

Comments
 (0)