Let’s not use Composer’s autoload, since it fails in 5.2

This reverts commit af737f4cc7.
This reverts commit 84a4ff5b16.
This commit is contained in:
Justin Hileman
2014-03-25 10:50:43 -07:00
parent af737f4cc7
commit fdff8a4d15
2 changed files with 3 additions and 5 deletions
+3 -2
View File
@@ -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';