This bundle is a collection of samples that we often need to implement in our projects. Currently this project is not usable outside the ArchetypeSymfony
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
composer require runroom/samples-bundle
Then, enable the bundle by adding it to the list of registered bundles in config/bundles.php
file of your project:
// config/bundles.php
return [
// ...
Runroom\SamplesBundle\RunroomSamplesBundle::class => ['all' => true],
];
Finally, execute doctrine schema update to create the new tables:
console doctrine:schema:update --force
This bundle is under the MIT license.