muriloamaral/magento2module

A sample module for Magento 2

Installs: 21

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:magento2-module

dev-master 2015-03-27 13:48 UTC

This package is not auto-updated.

Last update: 2025-06-25 11:56:52 UTC


README

A sample module for Magento 2.

Installation

  1. Add this project in your composer.json:

    "require": {
        "muriloamaral/magento2module": "dev-master"
    }
  2. Now tell composer to download it by running the command:

    $ sudo composer update

Post installation

  1. Enabling it in your app/etc/config.php file.

    <?php
        'modules' => array(
            // ...
            'MuriloAmaral_Magento2Module' => 1
        )