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 -...