move Thelia namespace into core/lib directory

introduce prod / dev environment
This commit is contained in:
Manuel Raynaud
2012-10-03 11:24:46 +02:00
parent 4682d484fd
commit e4fcadd3ec
7 changed files with 180 additions and 2 deletions

View File

@@ -1,6 +1,21 @@
<?php
if(!isset($env)){
$env = 'prod';
}
use Symfony\Component\DependencyInjection;
use Symfony\Component\DependencyInjection\Reference;
/**
*
* @file
* Functions needed for Thelia bootstrap
*/
$loader = require __DIR__ . '/autoload.php';
?>