2017 © Pedro Peláez
 

application fork-cms-module-generator

A generator for Fork modules

image

justcarakas/fork-cms-module-generator

A generator for Fork modules

  • Monday, February 27, 2017
  • by justcarakas
  • Repository
  • 1 Watchers
  • 2 Stars
  • 29 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 31 Versions
  • 0 % Grown

The README.md

Fork-cms module generator

Build Status, (*1)

Installation

Use composer to install the package to your dev dependencies., (*2)

composer require --dev pageon/fork-cms-module-generator, (*3)

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

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, (*5)

The Versions

19/01 2017

0.1.1

0.1.1.0

A generator for Fork modules

  Sources   Download

MIT

The Requires

 

by Jelmer Prins

19/01 2017

0.1.0

0.1.0.0

A generator for Fork modules

  Sources   Download

MIT

The Requires

 

by Jelmer Prins