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.
1 parent 0b5046d commit 9cd2754Copy full SHA for 9cd2754
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