From b21e0cfb9cfee9883ac6be6145e1bc4dc5c14a85 Mon Sep 17 00:00:00 2001 From: Remon van de Kamp Date: Thu, 14 Dec 2017 23:24:06 +0100 Subject: [PATCH] Tell contributors to use php-cs-fixer-v2 php-cs-fixer v1 does not work with the current settings because it does not recognise [some of] them --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 93086d8aa8c..9010bc4cd81 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -24,7 +24,7 @@ Due to time constraints, we are not always able to respond as quickly as we woul This project comes with a configuration file for [php-cs-fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) (`.php_cs`) that you can use to (re)format your sourcecode for compliance with this project's coding guidelines: ```bash -$ wget http://get.sensiolabs.org/php-cs-fixer.phar +$ wget http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -O php-cs-fixer.phar $ php php-cs-fixer.phar fix ```