Merge pull request #3 from eriksencosta/composer-autoload-path-fix

Updated path to the Composer generated autoload file
This commit is contained in:
Jeremy Mikola
2013-02-26 10:48:55 -08:00
+1 -1
View File
@@ -1,6 +1,6 @@
<?php
if (file_exists($file = __DIR__.'/../vendor/.composer/autoload.php')) {
if (file_exists($file = __DIR__.'/../vendor/autoload.php')) {
$loader = require_once $file;
} else {
throw new RuntimeException('Install dependencies to run test suite.');