Type
magento2-module
A basic Magento 2 module with a controller
magento2-module
OSL-3.0, AFL-3.0
None
None
None
None
None
From my blog post: https://www.ashsmith.io/2014/12/simple-magento2-controller-module/
Install with Composer!
composer require ashsmith/magento2-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 (
...
'Ashsmith_HelloWorld' => 1,
),
);