From 8ffc61692d03799ab3eb55798186774646fbb871 Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Sun, 7 Jul 2019 09:15:14 +0200 Subject: [PATCH] [Intl] Remove --dev from intl compile autoloader --- src/Symfony/Component/Intl/Resources/bin/autoload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Intl/Resources/bin/autoload.php b/src/Symfony/Component/Intl/Resources/bin/autoload.php index 13e0564781..14167a5f4a 100644 --- a/src/Symfony/Component/Intl/Resources/bin/autoload.php +++ b/src/Symfony/Component/Intl/Resources/bin/autoload.php @@ -12,7 +12,7 @@ $autoload = __DIR__.'/../../vendor/autoload.php'; if (!file_exists($autoload)) { - bailout('You should run "composer install --dev" in the component before running this script.'); + bailout('You should run "composer install" in the component before running this script.'); } require_once $autoload;