Files
Phraseanet/lib/autoload.php
2015-04-08 11:41:56 +02:00

11 lines
248 B
PHP

<?php
return call_user_func(function () {
$loader = require __DIR__ . '/../vendor/autoload.php';
if (file_exists(__DIR__ . '/../plugins/autoload.php')) {
require __DIR__ . '/../plugins/autoload.php';
}
return $loader;
});