From f0e4d7bbcf576f701ff6ffb60718cd9cc8c5b53c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 19 Oct 2018 23:08:28 +0200 Subject: [PATCH] Add phpstan to travis --- .travis.yml | 37 +++++++++++++++++++++++++------------ phpstan.neon | 3 +++ 2 files changed, 28 insertions(+), 12 deletions(-) create mode 100644 phpstan.neon diff --git a/.travis.yml b/.travis.yml index adab7895e..b84ae6feb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,26 +1,39 @@ language: php sudo: required php: - - 5.5 - - 5.6 - - 7.0 - - 7.1 - - 7.2 - - 7.3 +- 5.5 +- 5.6 +- 7.0 +- 7.1 +- 7.2 +- 7.3 + +env: + global: + - RUN_PHPSTAN="FALSE" + +matrix: + include: + - name: 'PHPStan' + php: 7.2 + env: RUN_PHPSTAN="TRUE" + fast_finish: true + allow_failures: + - php: 5.5 + +install: +- if [ $RUN_PHPSTAN == "TRUE" ]; then wget https://github.com/phpstan/phpstan/releases/download/0.10.3/phpstan.phar; fi before_script: - composer install script: - - ./bin/phpunit --configuration tests/phpunit.xml --coverage-clover=coverage.xml +- if [ $RUN_PHPSTAN == "FALSE" ]; then ./bin/phpunit --configuration tests/phpunit.xml --coverage-clover=coverage.xml; fi +- if [ $RUN_PHPSTAN == "TRUE" ]; then php phpstan.phar analyse -c phpstan.neon lib; fi after_success: - bash <(curl -s https://codecov.io/bash) cache: directories: - - $HOME/.composer/cache - -matrix: - allow_failures: - - php: 5.5 + - $HOME/.composer/cache diff --git a/phpstan.neon b/phpstan.neon new file mode 100644 index 000000000..e50c5be6e --- /dev/null +++ b/phpstan.neon @@ -0,0 +1,3 @@ +parameters: + level: 0 + bootstrap: %currentWorkingDirectory%/vendor/autoload.php