Installation
Composer Installation
Install via Composer:
composer require michalsn/codeigniter-module-manager
Manual Installation
If you prefer manual installation, follow these steps:
- Download this project
- Place the files in
app/ThirdParty/module-managerdirectory - Enable the package by editing
app/Config/Autoload.php:
<?php
namespace Config;
use CodeIgniter\Config\AutoloadConfig;
class Autoload extends AutoloadConfig
{
// ...
public $psr4 = [
APP_NAMESPACE => APPPATH,
'Michalsn\CodeIgniterModuleManager' => APPPATH . 'ThirdParty/module-manager/src',
];
// ...
}