Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 655 Bytes

installation.md

File metadata and controls

28 lines (21 loc) · 655 Bytes

Installation

First, require it thanks to composer:

composer.phar require troopers/alertify-bundle:~3.0

Add it in your AppKernel.php (pass to next step with Flex 💪):

    public function registerBundles() {
        $bundles = [
            //...
            new Troopers\AlertifyBundle\TroopersAlertifyBundle(),

Warning: make sure the twig engine is installed and turned on in framework.yaml If not :

  • runs composer req twig
  • if needed, add the following to config/packages/framework.yaml (or config/config.yml for symfony <4 versions)
framework:
    # ...
    templating:
        engines: ['twig']