kapilpatel20 / bvi-cms
Cms page Management with crud options
Package info
github.com/kapilpatel20/bvi-cms
Language:HTML
Type:symfony-bundle
pkg:composer/kapilpatel20/bvi-cms
Requires
This package is not auto-updated.
Last update: 2026-03-10 23:42:02 UTC
README
Documentation*
Run below command to install from composer
composer require kapilpatel20/bvi-cms dev-master
Add bundle in AppKernel.php in registerBundles function
new BviCmsBundle\BviCmsBundle(),
if KnpPaginatorBundle not added then please do add in AppKernel.php file
new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
Export route file in your app/config/routing.yml as below
bvi_cms: resource: "@BviCmsBundle/Resources/config/routing.yml" prefix: /cms
Install assets using below command
php app/console assets:install
Update your db schema using below command
php app/console doctrine:schema:update --force