diff options
author | Benjamin Eberlei <kontakt@beberlei.de> | 2012-05-21 11:56:04 +0200 |
---|---|---|
committer | Benjamin Eberlei <kontakt@beberlei.de> | 2012-05-21 11:56:04 +0200 |
commit | a851470b81774d37a39b7f50f1f9e881e65a35f3 (patch) | |
tree | 23555ba11ada0096cb1a66c1bdb3c51959be5c73 | |
parent | 4a4b375758a4204f4a1ac7dbec12fb03f8d18cdb (diff) | |
download | zetacomponents-graph-a851470b81774d37a39b7f50f1f9e881e65a35f3.zip zetacomponents-graph-a851470b81774d37a39b7f50f1f9e881e65a35f3.tar.gz |
Fix autoloading with composer
-rw-r--r-- | tests/bootstrap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index fa79cb1..929af31 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,5 +1,5 @@ <?php -if ( ! @include __DIR__ . '/../vendor/.composer/autoload.php' ) +if ( ! @include __DIR__ . '/../vendor/autoload.php' ) { die(<<<'EOT' You must set up the project dependencies, run the following commands: |