Initial symfony commit

This commit is contained in:
goo
2012-09-19 13:34:22 +10:00
parent 3128a6366b
commit fd1ab5f78e
81 changed files with 10309 additions and 0 deletions

13
sandbox/web/app_dev.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
use Symfony\Component\HttpFoundation\Request;
$loader = require_once __DIR__.'/../app/bootstrap.php.cache';
require_once __DIR__.'/../app/AppKernel.php';
require_once('/data/framework/lib/functions.php');
$kernel = new AppKernel('dev', true);
$kernel->loadClassCache();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);