No Description

bootstrap.php 450B

123456789101112131415161718
  1. <?php
  2. /*
  3. * This file is part of Psy Shell
  4. *
  5. * (c) 2012-2014 Justin Hileman
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. if (!is_file(dirname(__DIR__) . '/vendor/autoload.php')) {
  11. throw new RuntimeException('Install dependencies to run test suite.');
  12. }
  13. $loader = require dirname(__DIR__) . '/vendor/autoload.php';
  14. $loader->add('Psy\\Test\\', __DIR__);