Skip to content

Commit

Permalink
minor #32417 [Intl] Remove --dev from intl compile autoloader (ro0NL)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
fabpot committed Jul 8, 2019
2 parents 6a1be4c + 8ffc616 commit 166502c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Intl/Resources/bin/autoload.php
Expand Up @@ -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;

0 comments on commit 166502c

Please sign in to comment.