diff --git a/src/Symfony/Component/Intl/Resources/bin/autoload.php b/src/Symfony/Component/Intl/Resources/bin/autoload.php new file mode 100644 index 0000000000..e450011521 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/bin/autoload.php @@ -0,0 +1,18 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +$autoload = __DIR__ . '/../../vendor/autoload.php'; + +if (!file_exists($autoload)) { + bailout('You should run "composer install --dev" in the component before running this script.'); +} + +require_once realpath($autoload);