diff --git a/.coveralls.yml b/.coveralls.yml deleted file mode 100644 index bc71b62..0000000 --- a/.coveralls.yml +++ /dev/null @@ -1,2 +0,0 @@ -coverage_clover: clover.xml -json_path: coveralls-upload.json diff --git a/.gitattributes b/.gitattributes index 109a2fa..e958a92 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,9 +1,8 @@ # .gitattributes +.github/ export-ignore tests/ export-ignore -.coveralls.yml export-ignore .gitattributes export-ignore .gitignore export-ignore -.travis.yml export-ignore phpunit.xml.dist export-ignore # Auto detect text files and perform LF normalization diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0e2c925..0000000 --- a/.travis.yml +++ /dev/null @@ -1,46 +0,0 @@ -language: php - -sudo: false - -notifications: - email: - on_success: never - -php: - - 7.3 - - 7.4 - - nightly - -env: - - COMPOSER_FLAGS="--prefer-lowest" - - COMPOSER_FLAGS="" - -stages: - - test - - test with coverage - -cache: - directories: - - $HOME/.composer/cache - -before_install: - - phpenv config-rm xdebug.ini || echo "xdebug not available" - - composer self-update - -install: travis_retry composer update --optimize-autoloader --prefer-dist --prefer-stable --no-progress --no-interaction --no-suggest $COMPOSER_FLAGS -vv - -script: vendor/bin/phpunit --colors --columns 117 --no-coverage - -jobs: - allow_failures: - - php: nightly - include: - - php: nightly - env: COMPOSER_FLAGS="--ignore-platform-reqs" - - - stage: test with coverage - os: linux - php: 7.3 - env: COMPOSER_FLAGS="" - before_install: composer self-update - script: vendor/bin/phpunit --colors --coverage-text diff --git a/README.md b/README.md index 12c22c3..8d77498 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ Helpers to build PHPUnit mock objects easily. -[![Build Status](https://travis-ci.org/mnapoli/phpunit-easymock.png?branch=master)](https://travis-ci.org/mnapoli/phpunit-easymock) -[![Coverage Status](https://coveralls.io/repos/mnapoli/phpunit-easymock/badge.png?branch=master)](https://coveralls.io/r/mnapoli/phpunit-easymock?branch=master) [![Total Downloads](https://poser.pugx.org/mnapoli/phpunit-easymock/downloads)](https://packagist.org/packages/mnapoli/phpunit-easymock) ## Why?