From b9e9cb27b9ee6641b8a3c4db2a6586589dde35b8 Mon Sep 17 00:00:00 2001 From: Bernhard Schussek Date: Fri, 15 Mar 2013 15:55:57 +0100 Subject: [PATCH] [Intl] Added autoload.php which was ignored by .gitignore --- .../Component/Intl/Resources/bin/autoload.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Symfony/Component/Intl/Resources/bin/autoload.php 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);