From 2a9f080a4936954aa929da9ebf2c52c657e3479a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 3 Nov 2020 10:12:12 +0100 Subject: [PATCH] Fix: Remove defunct Travis configuration --- .gitignore | 1 - .travis.yml | 25 ------------------------- 2 files changed, 26 deletions(-) delete mode 100644 .travis.yml diff --git a/.gitignore b/.gitignore index e690eac..9c4ee7f 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,5 @@ composer.phar # Dot files we want to keep # ####################### !/.git* -!/.travis.yml !/.php_cs !/.editorconfig diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 80aa347..0000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -language: php -sudo: false -matrix: - include: - - php: 5.5 - - php: 5.6 - - php: 7.0 - fast_finish: true -cache: - directories: - - $HOME/.composer/cache - -before_install: -# Remove xdebug as per https://getcomposer.org/doc/articles/troubleshooting.md#xdebug-impact-on-composer - - composer self-update - - composer validate - -install: - - composer install --prefer-dist - -script: - - bin/phpcs --standard=phpcs.xml src - - bin/phpspec run --no-code-generation --format=pretty -...