bootstrap.php 546 B

1234567891011121314151617
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. require_once __DIR__.'/../lib/vendor/lime/LimeAutoloader.php';
  10. LimeAutoloader::register();
  11. require_once __DIR__.'/../../src/Symfony/Foundation/ClassLoader.php';
  12. $loader = new Symfony\Foundation\ClassLoader();
  13. $loader->registerNamespace('Symfony', __DIR__.'/../../src');
  14. $loader->register();