Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chaplean/cms-bundle
https://github.com/chaplean/cms-bundle
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/chaplean/cms-bundle
- Owner: chaplean
- Created: 2019-07-10T05:51:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T19:42:07.000Z (over 2 years ago)
- Last Synced: 2024-04-27T10:08:24.501Z (9 months ago)
- Language: JavaScript
- Size: 7.25 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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
```