Skip to content

Commit 166502c

Browse files
committed
minor symfony#32417 [Intl] Remove --dev from intl compile autoloader (ro0NL)
This PR was merged into the 3.4 branch. Discussion ---------- [Intl] Remove --dev from intl compile autoloader | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes | New feature? | no | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | #... <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | symfony/symfony-docs#... <!-- required for new features --> Remove implicit composer default (`jakzal/php-intl` uses latest composer during compile) Commits ------- 8ffc616 [Intl] Remove --dev from intl compile autoloader
2 parents 6a1be4c + 8ffc616 commit 166502c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Intl/Resources/bin/autoload.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
$autoload = __DIR__.'/../../vendor/autoload.php';
1313

1414
if (!file_exists($autoload)) {
15-
bailout('You should run "composer install --dev" in the component before running this script.');
15+
bailout('You should run "composer install" in the component before running this script.');
1616
}
1717

1818
require_once $autoload;

0 commit comments

Comments
 (0)