Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 627 Bytes

INSTALLATION.md

File metadata and controls

24 lines (21 loc) · 627 Bytes

Installation

  • Install with Composer by running the following command from the project root:
$ composer require club-seiden/laminas-ibmi-toolkit
  • Copy and rename configuration file

    • Move laminas_ibmi_toolkit.global.php.dist from /config to your project's config/autoload directory
    • Rename the file by removing ".dist"
  • Add LaminasIbmiToolkit to your list of modules

    • example:
    <?php
    // /config/application.config.php
    return [
        'modules' => [
            'MyModule1',
            'MyModule2',
            'LaminasIbmiToolkit', // Add this line
        ],
    ];