runroom/samples-bundle

Add a render event before rendering templates

Installs: 49 482

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 9

Forks: 6

Open Issues: 5

Type:symfony-bundle

0.15.1 2024-10-21 13:56 UTC

README

Latest Stable Version Latest Unstable Version License

Total Downloads Monthly Downloads Daily Downloads

CI QA codecov shepherd

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

Installation

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

Enable the 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],
];

Update doctrine schema

Finally, execute doctrine schema update to create the new tables:

console doctrine:schema:update --force

License

This bundle is under the MIT license.