marknotton/template-maker

Craft CMS 3 template-maker module

dev-master 2018-12-06 07:40 UTC

This package is auto-updated.

Last update: 2024-04-13 03:20:23 UTC


README

Requirements

This module requires Craft 3

Installation

To install the module, follow these instructions.

You will need to add the following content to your config/app.php file. This ensures that your module will get loaded for each request. You can remove components if you don't require the full set of features this module offers.

return [
  'modules' => [
    'template-maker' => [
      'class' => \modules\template-maker\Helpers::class,
      'components' => [
        'service' => [ 'class' => 'modules\template-maker\services\Services' ]
      ],
    ]
  ],
  'bootstrap' => ['template-maker'],
];

You'll also need to make sure that you incorporate the following to your project's composer.json file:

"require": {
  "oomphinc/composer-installers-extender": "^1.1",
  "marknotton/template-maker": "dev-master"
},
"autoload": {
  "psr-4": {
    "modules\\": "modules/",
    "modules\\template-maker\\": "modules/template-maker/module/"
  }
},
"extra": {
  "installer-types": ["craft-module"],
  "installer-paths": {
    "modules/{$name}": ["type:craft-module"]
  }
},

Composer Installers Extender is what allows you to create your own Package Type. The craft-module package type I'm using is not native to Craft, and there-for not supported by Composer Installers. Package types allow you to define extra settings that tell Composer to put this module into the modules directory. It's the only way you can reliably manage this module within your project.

After you have added this, you may need to run composer dump-autoload from the project’s root directory to rebuild the Composer autoload map. This will happen automatically any time you do a composer install or composer update as well.