sixnapps/porto-template-bundle

This bundle provides template porto for symfony

Installs: 219

Dependents: 0

Suggesters: 0

Security: 0

Type:symfony-bundle

1.1.25 2019-06-03 09:12 UTC

README

Intégration de Porto 7.2.0 template dans symfony 4.

Branch master of this bundle requires at least PHP 7.1 and Symfony 4.2 components

Installation

en console

  • composer require sixnapps/porto-template-bundle
  • bin/console assets:install --symlink

ajouter au fichier config/services.yaml du projet parent:

...
services:
    ...
    sixnapps.porto.templating.services:
        class:  'Sixnapps\PortoTemplateBundle\Templating\Templating'
        public: true
        arguments:
            $templating: '@templating'

    sixnapps.porto.twig.services:
        class:  'Sixnapps\PortoTemplateBundle\Twig\TwigExtension'
        public: true
        arguments:
            $templating: '@sixnapps.porto.templating.services'
    ...
   

ajoute la route suivante au projet parent :

sixnapps_porto:
    resource: "@SixnappsPortoTemplateBundle/Resources/config/routing.yaml"