Removed the deprecated "--dev" argument from the recommended composer command. When that argument is specified, composer prints the following:

You are using the deprecated option "dev". Dev packages are installed by default now.
This commit is contained in:
Mark McEver 2015-11-08 09:06:56 -06:00 committed by Andreas Fischer
parent 98ae83482b
commit 1a7d9aafd7

View File

@ -10,7 +10,7 @@ date_default_timezone_set('UTC');
$loader_path = __DIR__ . '/../vendor/autoload.php';
if (!file_exists($loader_path)) {
echo "Dependencies must be installed using composer:\n\n";
echo "php composer.phar install --dev\n\n";
echo "php composer.phar install\n\n";
echo "See http://getcomposer.org for help with installing composer\n";
exit(1);
}