Widgets for Symfony2
Widgets for Symfony2, (*1)
This version of the bundle requires Symfony 2.1+, (*2)
Add EoWidgetBundle in your composer.json:, (*3)
{ "require": { "eo/widget-bundle": "dev-master" } }
This will also install the following dependencies:, (*4)
"doctrine/common": ">=2.1.3" "jms/serializer-bundle": ">=0.9.0"
Now tell composer to download the bundle by running the command:, (*5)
$ php composer.phar update eo/widget-bundle
Composer will install the bundle to your project's vendor/eo directory., (*6)
Enable the bundle in the kernel:, (*7)
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Eo\WidgetBundle\EoWidgetBundle(), ); }
Now that you have properly installed and enabled EoWidgetBundle, the next step is to configure the bundle to work with the specific needs of your application., (*8)
Add the following configuration to your config.yml
file, (*9)
# app/config/config.yml eo_widget: storages: session: true
Currently all configuration values are optional., (*10)
(Not ready!), (*11)
This bundle is under the MIT license. See the complete license in the bundle:, (*12)
Resources/meta/LICENSE
Issues and feature requests related to this bundle are tracked in the Github issue tracker https://github.com/eymengunay/EoWidgetBundle/issues., (*13)