Skip to content

sumocoders/fork-cms-module-generator

 
 

Repository files navigation

Fork-cms module generator

Build Status

Installation

Use composer to install the package to your dev dependencies.

composer require --dev sumocoders/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

Packages

No packages published

Languages

  • PHP 75.1%
  • HTML 16.8%
  • Gherkin 8.1%