Getting Started
Start here to learn the essentials about developing web applications with the Doctrine Enhancement Pack.
Installing & Setting up
Installing via Composer
If you don’t have Composer installed in your computer, start by installing Composer globally. Then, execute the following commands to install the required dependencies:
composer require darkwebdesign/doctrine-enhancement-bundle
composer install
Enabling the bundle in Symfony
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new DarkWebDesign\DoctrineEnhancementBundle\DarkWebDesignDoctrineEnhancementBundle(),
);
// ...
}