birenk/helloworld-controller-module

A basic Magento 2 module with a controller


Licenses
OSL-3.0/AFL-3.0

Documentation

#Magento 2 Controller Module Example

To install:

Install with Composer!

composer require birenk/helloworld-controller-module:2.0.*

Then you'll need to modify app/etc/config.php to activate the module. It should look a little like this:

<?php
return array (
    'modules' =>
    array (
        ...
        'Birenk_HelloWorld' => 1,
        ),
      );