2017 © Pedro Peláez
 

symfony-bundle front-bundle

image

wizaplace/front-bundle

  • Friday, July 20, 2018
  • by mnapoli
  • Repository
  • 5 Watchers
  • 2 Stars
  • 7,894 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 3 Open issues
  • 55 Versions
  • 33 % Grown

The README.md

Wizaplace Front Bundle

A Symfony bundle giving you the tools to build your own Wizaplace front-office., (*1)

This repository contains low-level utilities. To build a Wizaplace front-office you may be interested instead in using our full Starter Kit. Please contact us., (*2)

Installation

$ composer require wizaplace/front-bundle

You need to update your app/AppKernel.php file:, (*3)

<?php
// app/AppKernel.php

use Symfony\Component\HttpKernel\Kernel;

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new WizaplaceFrontBundle\WizaplaceFrontBundle(),
        ];
    }
}

You also need to import routing:, (*4)

# app/config/routing.yml

wizaplace_front_bundle:
    resource: '@WizaplaceFrontBundle/Resources/config/routing.yml'

The Versions