We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f16495 commit b81d6b8Copy full SHA for b81d6b8
.travis.yml
@@ -15,6 +15,7 @@ matrix:
15
include:
16
# Test the latest stable release
17
- php: 7.2
18
+ env: PHPSTAN=true
19
- php: 7.3
20
env: COVERAGE=true PHPUNIT_FLAGS="-v --coverage-text"
21
@@ -51,7 +52,7 @@ script:
51
52
# simple-phpunit is the PHPUnit wrapper provided by the PHPUnit Bridge component and
53
# it helps with testing legacy code and deprecations (composer require symfony/phpunit-bridge)
54
#- ./vendor/bin/simple-phpunit $PHPUNIT_FLAGS
- - composer phpstan
55
+ - if [[ $PHPSTAN == true ]]; then composer phpstan; fi
56
- ./vendor/bin/phpunit
57
58
after_script:
0 commit comments