ditto-bundle propel-bundle
A Ditto framework bundle for the Propel ORM
ditto/propel-bundle
A Ditto framework bundle for the Propel ORM
- Monday, August 19, 2013
- by mcwebb
- Repository
- 1 Watchers
- 0 Stars
- 14 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Propel for Ditto
a Ditto bundle, (*1)
Basic Use
Engine::load()->bundle('Propel')
->setProject('unit')
->init();
Using cross project (as in unit)
$loader = new \ClassLoader\Loader;
$loader->registerNamespaceDirectory('Ditto\Propel', $_SERVER['DOCUMENT_ROOT']. '/unit/vendor/ditto/propel-bundle/src/Ditto/Propel');
$loader->setAutoloader();
Engine::load()->bundle('Propel')
->setProject('unit')
->forceRoot($_SERVER['DOCUMENT_ROOT'] . '/unit/')
->init();