bootstrap.php 313 B

123456789101112131415
  1. <?php
  2. if (!$loader = @include __DIR__.'/../vendor/autoload.php') {
  3. echo <<<EOM
  4. You must set up the project dependencies by running the following commands:
  5. curl -s http://getcomposer.org/installer | php
  6. php composer.phar install
  7. EOM;
  8. exit(1);
  9. }
  10. $loader->add('JonnyW\PhantomJs\Test', __DIR__);