From fdff8a4d1524cbb039bdb691cf83341a64f2129b Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Tue, 25 Mar 2014 10:48:21 -0700 Subject: [PATCH] =?UTF-8?q?Let=E2=80=99s=20not=20use=20Composer=E2=80=99s?= =?UTF-8?q?=20autoload,=20since=20it=20fails=20in=205.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit af737f4cc72e1463e87f5bf946dab8d126d87a49. This reverts commit 84a4ff5b16b0be42c969e7da50c7da7ce22fbe55. --- .travis.yml | 3 --- test/bootstrap.php | 5 +++-- 2 files changed, 3 insertions(+), 5 deletions(-) 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';