mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 11:03:17 +00:00
11 lines
248 B
PHP
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;
|
|
});
|