Getting Started
Start here to learn the essentials about developing web applications with the Symfony Add-on 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/symfony-addon-bundle
composer install
Enabling the bundle in Symfony
// config/bundles.php
return [
// ...
DarkWebDesign\SymfonyAddonBundle\DarkWebDesignSymfonyAddonBundle::class => ['all' => true],
];