From 710f500e65685b15f5a2bc230ee29799f778dce2 Mon Sep 17 00:00:00 2001 From: Aaron Suarez Date: Wed, 1 Aug 2018 14:04:56 -0500 Subject: [PATCH] Remove deprecated --dev flag to composer install command instructions --- CONTRIBUTING.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 961091e2..5dff9b5f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ PHPUnit, then run our existing tests: ``` $ curl -s https://getcomposer.org/installer | php -$ php composer.phar install --dev +$ php composer.phar install $ vendor/phpunit/phpunit/phpunit Tests/ ``` diff --git a/README.md b/README.md index a4faa54e..3cba9300 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ You can run our unit tests by using Composer to install PHPUnit: ``` $ curl -s https://getcomposer.org/installer | php -$ php composer.phar install --dev +$ php composer.phar install $ vendor/bin/phpunit ```