https://github.com/chaplean/cms-bundle
https://github.com/chaplean/cms-bundle
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chaplean/cms-bundle
- Owner: chaplean
- Created: 2019-07-10T05:51:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T19:42:07.000Z (almost 3 years ago)
- Last Synced: 2025-02-14T01:17:36.381Z (5 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
```