Add autoloader.php and services.php

This commit is contained in:
Romain Neutron
2013-05-30 02:27:45 +02:00
parent 3601fddbb9
commit 68f9446d22
2 changed files with 12 additions and 0 deletions

5
plugins/autoload.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
return call_user_func(function () {
return require __DIR__ . '/../vendor/autoload.php';
});

7
plugins/services.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
use Alchemy\Phrasea\Application;
return call_user_func(function (Application $app) {
return $app;
}, $app);