Autoload dependencies with autoloader in bootstrap.php

This commit is contained in:
Alex Bilbie
2013-01-02 22:32:49 +00:00
parent b10613c5e3
commit 5f1779c4e7
4 changed files with 7 additions and 7 deletions

6
tests/Bootstrap.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
if ( ! @include_once __DIR__ . '/../vendor/autoload.php')
{
exit("You must set up the project dependencies, run the following commands:\n> wget http://getcomposer.org/composer.phar\n> php composer.phar install\n");
}