[2.0] Fixing sandbox
This commit is contained in:
parent
f4f258ede6
commit
a6fbc19927
2 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require '../../lib/Doctrine/Common/ClassLoader.php';
|
require '../../lib/Doctrine/Common/ClassLoader.php';
|
||||||
|
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader();
|
$classLoader = new \Doctrine\Common\ClassLoader();
|
||||||
$classLoader->register();
|
|
||||||
|
|
||||||
$classLoader->setBasePath('Doctrine', realpath(__DIR__ . '/../../lib'));
|
$classLoader->setBasePath('Doctrine', realpath(__DIR__ . '/../../lib'));
|
||||||
$classLoader->setBasePath('Entities', __DIR__);
|
$classLoader->setBasePath('Entities', __DIR__);
|
||||||
|
|
||||||
|
@ -15,4 +14,4 @@ $connectionOptions = array(
|
||||||
'driver' => 'pdo_sqlite',
|
'driver' => 'pdo_sqlite',
|
||||||
'path' => 'database.sqlite'
|
'path' => 'database.sqlite'
|
||||||
);
|
);
|
||||||
$em = \Doctrine\ORM\EntityManager::create($connectionOptions, 'doctrine', $config, $eventManager);
|
$em = \Doctrine\ORM\EntityManager::create($connectionOptions, $config, $eventManager);
|
|
@ -1,2 +1,3 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require 'config.php';
|
require 'config.php';
|
Loading…
Add table
Reference in a new issue