bootstrap.php 284 B

123456789101112131415
  1. <?php
  2. if ( ! @include __DIR__ . '/../vendor/autoload.php' )
  3. {
  4. die(<<<'EOT'
  5. You must set up the project dependencies, run the following commands:
  6. wget http://getcomposer.org/composer.phar
  7. php composer.phar install --dev
  8. You can then run tests by calling:
  9. phpunit
  10. EOT
  11. );
  12. }