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

https://github.com/pageon/fork-cms-module-generator

WIP: Generator for domain and modules for fork-cms
https://github.com/pageon/fork-cms-module-generator

console fork fork-cms forkcms generator php

Last synced: 3 months ago
JSON representation

WIP: Generator for domain and modules for fork-cms

Awesome Lists containing this project

README

        

# Fork-cms module generator
[![Build Status](https://travis-ci.org/sumocoders/fork-cms-module-generator.svg?branch=master)](https://travis-ci.org/sumocoders/fork-cms-module-generator)

## Installation

Use composer to install the package to your dev dependencies.

`composer require --dev pageon/fork-cms-module-generator`

Register the following bundles in your Fork `app/AppKernel.php`, but only load them in dev or test mode.

```
class AppKernel extends Kernel
{
/**
* Load all the bundles we'll be using in our application.
*/
public function registerBundles(): array
{
...

if (in_array($this->getEnvironment(), ['dev', 'test'])) {
...

$bundles[] = new \Matthias\SymfonyConsoleForm\Bundle\SymfonyConsoleFormBundle();
$bundles[] = new \ModuleGenerator\ModuleGeneratorBundle();
}

return $bundles;
}

...
}
```

## Tests

You can run the tests with `composer test`