diff --git a/.travis.yml b/.travis.yml index 67e5e84..47022c5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,3 @@ php: - 5.3 - 5.4 - 5.5 - -before_script: - - composer install \ No newline at end of file diff --git a/test/bootstrap.php b/test/bootstrap.php index deda69e..03a119f 100644 --- a/test/bootstrap.php +++ b/test/bootstrap.php @@ -9,7 +9,8 @@ * file that was distributed with this source code. */ -$loader = require dirname(__FILE__).'/../vendor/autoload.php'; -$loader->add('Mustache_Test', dirname(__FILE__)); +require dirname(__FILE__).'/../src/Mustache/Autoloader.php'; +Mustache_Autoloader::register(); +Mustache_Autoloader::register(dirname(__FILE__).'/../test'); require dirname(__FILE__).'/../vendor/yaml/lib/sfYamlParser.php';