birenk/helloworld-controller-module

A basic Magento 2 module with a controller

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:magento2-module

pkg:composer/birenk/helloworld-controller-module

dev-master 2019-10-23 12:04 UTC

This package is auto-updated.

Last update: 2025-10-24 01:31:14 UTC


README

#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,
        ),
      );