Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chaplean/cms-bundle


https://github.com/chaplean/cms-bundle

Last synced: 20 days ago
JSON representation

Awesome Lists containing this project

README

        

Getting Started With ChapleanCmsBundle
=======================================

# Prerequisites

This version of the bundle requires Symfony 2.8+.

### Installation

Include ChapleanCmsBundle in `composer.json`

``` json
composer require chaplean/cms-bundle
```

Add bundle in `AppKernel.php`

```php
container->get('kernel');
$application = new Application($kernel);
$application->setAutoExit(false);

$options = array('command' => 'doctrine:fixtures:load', '--fixtures' => 'vendor/chaplean/cms-bundle/Chaplean/Bundle/CmsBundle/DataFixtures/ORM', '--append' => true);
$application->run(new ArrayInput($options));

```

##### Build translations
```shell
php bin/console bazinga:js-translation:dump
```