From 31d8ff9369506af987d75f15194a3f90fe4101b0 Mon Sep 17 00:00:00 2001 From: Julien Mercier-Rojas Date: Tue, 9 Mar 2021 16:54:37 +0100 Subject: [PATCH 1/2] Update readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4252980..9edea69 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [![Latest Stable Version](https://poser.pugx.org/jeckel-lab/command-dispatcher/v/stable)](https://packagist.org/packages/jeckel-lab/command-dispatcher) [![Total Downloads](https://poser.pugx.org/jeckel-lab/command-dispatcher/downloads)](https://packagist.org/packages/jeckel-lab/command-dispatcher) [![Build Status](https://travis-ci.org/Jeckel-Lab/command-dispatcher.svg?branch=master)](https://travis-ci.org/Jeckel-Lab/command-dispatcher) +[![Build Status](https://github.com/jeckel-lab/command-dispatcher/workflows/validate/badge.svg)](https://github.com/Jeckel-Lab/command-dispatcher/actions) [![codecov](https://codecov.io/gh/jeckel-lab/command-dispatcher/branch/master/graph/badge.svg)](https://codecov.io/gh/jeckel-lab/command-dispatcher) ***If you are looking for symfony integration, look at the [jeckel-lab/command-dispatcher-bundle](https://packagist.org/packages/jeckel-lab/command-dispatcher-bundle) package.*** From db3a5681396cc4730f769dfff54f262c41a918b0 Mon Sep 17 00:00:00 2001 From: Julien Mercier-Rojas Date: Tue, 9 Mar 2021 16:55:45 +0100 Subject: [PATCH 2/2] Disable travis --- .travis.yml | 36 ------------------------------------ README.md | 1 - 2 files changed, 37 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 7140c60..0000000 --- a/.travis.yml +++ /dev/null @@ -1,36 +0,0 @@ -language: php -php: - - '7.2' - - '7.3' - - '7.4' - - '8.0' - -cache: - directories: - - $HOME/.composer/cache/files - -matrix: - fast_finish: true - include: - - php: 7.2 - env: COMPOSER_FLAGS="--prefer-lowest" - -before_script: - - travis_retry composer self-update - - travis_retry composer update $COMPOSER_FLAGS --no-interaction --prefer-dist --dev - - phpenv config-rm xdebug.ini - - if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then - pecl install xdebug-2.9.8; - echo "zend_extension=xdebug.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; - echo "XDEBUG_MODE=coverage" > xdebug.ini; - phpenv config-add xdebug.ini; - fi - -script: - - ./vendor/bin/phpmd src text ./ruleset.xml - - ./vendor/bin/phpcs - - ./vendor/bin/psalm - - if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then ./vendor/bin/phpunit --coverage-clover coverage.xml; else ./vendor/bin/phpunit; fi - -after_success: - - if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi diff --git a/README.md b/README.md index 9edea69..a2a8e1d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # Command Dispatcher [![Latest Stable Version](https://poser.pugx.org/jeckel-lab/command-dispatcher/v/stable)](https://packagist.org/packages/jeckel-lab/command-dispatcher) [![Total Downloads](https://poser.pugx.org/jeckel-lab/command-dispatcher/downloads)](https://packagist.org/packages/jeckel-lab/command-dispatcher) -[![Build Status](https://travis-ci.org/Jeckel-Lab/command-dispatcher.svg?branch=master)](https://travis-ci.org/Jeckel-Lab/command-dispatcher) [![Build Status](https://github.com/jeckel-lab/command-dispatcher/workflows/validate/badge.svg)](https://github.com/Jeckel-Lab/command-dispatcher/actions) [![codecov](https://codecov.io/gh/jeckel-lab/command-dispatcher/branch/master/graph/badge.svg)](https://codecov.io/gh/jeckel-lab/command-dispatcher)