wizaplace / front-bundle
Package info
github.com/wizaplace/wizaplace-front-bundle
Type:symfony-bundle
pkg:composer/wizaplace/front-bundle
0.8.0
2022-01-19 14:50 UTC
Requires
- php: >=7.1
- doctrine/cache: ^1.10
- kevinrob/guzzle-cache-middleware: ^3.2
- symfony/monolog-bundle: ^3.1
- symfony/symfony: ^3.4.6
- twig/twig: ^2.4
- wizaplace/sdk: ^1.146
Requires (Dev)
- bmancone/guzzle-stopwatch-middleware: ^1.0
- dg/bypass-finals: ^1.2
- kphoen/sitemap-generator: ^1.4
- php-vcr/php-vcr: ^1.4
- phpstan/phpstan: ^0.12.11
- phpstan/phpstan-symfony: ^0.12.4
- phpunit/phpunit: ^6.5.5
- sensio/distribution-bundle: ^5.0
- symfony/phpunit-bridge: ^3.3
- wizaplace/phpcs: ^1.2
Suggests
- jms/i18n-routing-bundle: To vary routes per language
- kphoen/sitemap-generator: To generate sitemaps
This package is auto-updated.
Last update: 2026-06-20 03:25:00 UTC
README
A Symfony bundle giving you the tools to build your own Wizaplace front-office.
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.
Installation
$ composer require wizaplace/front-bundle
You need to update your app/AppKernel.php file:
<?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:
# app/config/routing.yml
wizaplace_front_bundle:
resource: '@WizaplaceFrontBundle/Resources/config/routing.yml'