From 70d466cdac59fd2ccf8d60655dd977bf78229dce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 31 Oct 2020 09:29:15 +0100 Subject: [PATCH] Enhancement: Synchronize with ergebnis/php-library-template --- .github/FUNDING.yml | 6 +++++- .github/actions/composer/composer/install/run.sh | 6 +++--- Makefile | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 40c2901..0f40d05 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,6 @@ -custom: "https://www.buymeacoffee.com/localheinz" +custom: + - "https://cottonbureau.com/people/andreas-moller" + - "https://paypal.me/localheinz" + - "https://www.amazon.de/hz/wishlist/ls/2NCHMSJ4BC1OW" + - "https://www.buymeacoffee.com/localheinz" github: "localheinz" diff --git a/.github/actions/composer/composer/install/run.sh b/.github/actions/composer/composer/install/run.sh index 3cc3df1..a052ba6 100755 --- a/.github/actions/composer/composer/install/run.sh +++ b/.github/actions/composer/composer/install/run.sh @@ -3,19 +3,19 @@ dependencies="${COMPOSER_INSTALL_DEPENDENCIES}" if [[ ${dependencies} == "lowest" ]]; then - composer update --no-interaction --no-progress --no-suggest --prefer-lowest + composer update --no-interaction --no-progress --prefer-lowest exit $? fi if [[ ${dependencies} == "locked" ]]; then - composer install --no-interaction --no-progress --no-suggest + composer install --no-interaction --no-progress exit $? fi if [[ ${dependencies} == "highest" ]]; then - composer update --no-interaction --no-progress --no-suggest + composer update --no-interaction --no-progress exit $? fi diff --git a/Makefile b/Makefile index 1b1a7a3..198462f 100644 --- a/Makefile +++ b/Makefile @@ -36,4 +36,4 @@ tests: vendor ## Runs tests with phpunit/phpunit vendor: composer.json composer.lock composer validate --strict - composer install --no-interaction --no-progress --no-suggest + composer install --no-interaction --no-progress