bootstrap.php 493B

123456789101112131415
  1. <?php
  2. function includeIfExists($file) {
  3. if (file_exists($file)) {
  4. return include $file;
  5. }
  6. }
  7. if ((!$loader = includeIfExists(__DIR__.'/../vendor/autoload.php')) && (!$loader = includeIfExists(__DIR__.'/../../../autoload.php'))) {
  8. die('You must set up the project dependencies, run the following commands:'.PHP_EOL.
  9. 'curl -s http://getcomposer.org/installer | php'.PHP_EOL.
  10. 'php composer.phar install'.PHP_EOL);
  11. }
  12. $loader->add('Knp\Menu\Tests\\', __DIR__);