We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b5046d + 9cd2754 commit 660a1aeCopy full SHA for 660a1ae
Tests/bootstrap.php
@@ -1,10 +1,15 @@
1
<?php
2
3
-if (!@include __DIR__ . '/../vendor/.composer/autoload.php') {
4
- die("You must set up the project dependencies, run the following commands:
5
-wget http://getcomposer.org/composer.phar
6
-php composer.phar install
7
-");
+if (!@include __DIR__ . '/../vendor/autoload.php') {
+ echo <<<EOF
+You must set up the project dependencies, run the following commands:
+
+ wget http://getcomposer.org/composer.phar
8
+ php composer.phar install
9
10
+EOF;
11
12
+ exit(1);
13
}
14
15
spl_autoload_register(function($class) {
0 commit comments