The best way to install this bundle is to rely on Composer:
$ composer require brangerieau/symfonycms
Register the bundle in your application's kernel:
// config/bundles.php
<?php
return [
/* ... */
Brangerieau\SymfonyCmsBundle\SymfonyCmsBundle::class => ['all' => true],
];
You must activate the custom routes of the bundle to be able to access the administration:
# config/routes.yaml
symfony_cms:
resource: '@SymfonyCmsBundle/config/routes.yaml'
Activate assets to have a stylized on admin :
$ php bin/console assets:install
If you want to add the fixtures from the bundle:
$ composer require --dev orm-fixtures
$ composer require --dev fakerphp/faker
# Load all fixtures :
$ php bin/console doctrine:fixtures:load
Symfony CMS was originally created by Brangerieau Thibaud.
How can I help you explore Laravel packages today?