bleuebuzz / integration-bundle
Symfony2 integrationFramework
Installs: 94
Dependents: 1
Suggesters: 0
Security: 0
Type:symfony-bundle
pkg:composer/bleuebuzz/integration-bundle
Requires
- php: >=5.3.2
 - doctrine/doctrine-bundle: *
 - symfony/framework-bundle: *
 - twig/twig: *
 
This package is auto-updated.
Last update: 2025-10-09 04:42:23 UTC
README
Configuration du bundle dans un projet Symfony
* ajouter au composer.json
    "require": {
        ....
        "bleuebuzz/integration-bundle": "dev-master",
        ....
    }
* lancer la cmd "php composer.phar update"
* ajouter au fichier app/AppKernel.php
    new Bleuebuzz\IntegrationBundle\BleuebuzzIntegrationBundle()
* pour avoir accès au portfolio (/portfolio), ajouter au fichier app/config/config.yml
    bleuebuzz_integration:
      portfolio: true
* pour étendre le layout du bundle
    {% extends "BleuebuzzIntegrationBundle::layout.html.twig" %}
* pour étendre le form layout du bundle, ajouter au fichier app/config/config.yml
    twig:
      form:
        resources:
            - 'BleuebuzzIntegrationBundle:Form:form_div_layout.html.twig'