openemr/oe-module-installer-plugin

OpenEMR Module Installer plugin for installing custom modules into the OpenEMR codebase.

Installs: 10 339

Dependents: 12

Suggesters: 0

Security: 0

Stars: 2

Watchers: 8

Forks: 3

Open Issues: 0

Type:composer-plugin

0.1.5 2021-05-03 14:22 UTC

This package is auto-updated.

Last update: 2024-04-29 04:33:22 UTC


README

OpenEMR Module Composer Plugin installer that installs either Custom or Zend modules into the correct directory path using composer for an OpenEMR codebase.

Developers who wish to use composer to install their plugins can include in their composer.json the following composer types

For Custom Modules

/** composer.json ***/
{
    "name": "openemr/SomeCustomModule",
    "type": "openemr-module",
    "require": {
        "openemr/oe-module-installer-plugin": "^0.1.0"
    }
}

The above module will install in the interface/modules/custom_modules/SomeCustomModule/ directory

For Zend Framework Modules

/** composer.json ***/
{
    "name": "openemr/SomeCustomModule",
    "type": "openemr-zend-module",
    "require": {
        "openemr/oe-module-installer-plugin": "^0.1.0"
    }
}

The above module will install in the interface/modules/zend/modules/SomeCustomModule/ directory