vikci / module_pecker
OpenEMR Custom Module Woodpecker Starter Project
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:openemr-module
Requires
- php: >= 7.4
- composer/installers: ^2.0
Conflicts
- openemr/openemr: <6.0.0
This package is auto-updated.
Last update: 2025-06-11 10:14:16 UTC
README
Installing Module Via Composer
Install the package by doing a composer require vikci/module_pecker
Installing Module via filesystem
If you copy your module into the installation directory you will need to copy your module's composer.json "psr-4" property into your OpenEMR's psr-4 settings.
You will also need to run a composer dump-autoload
wherever your openemr composer.json file is located in order to get your namespace properties setup properly
to include your module.
Activating Your Module
Install your module using either composer (recommended) or by placing your module in the <openemr_installation_directory>//interface/modules/custom_modules/.
Once your module is installed in OpenEMR custom_modules folder you can activate your module in OpenEMR by doing the following.
- Login to your OpenEMR installation as an administrator
- Go to your menu and select Modules -> Manage Modules
- Now click the Install button next your module name.
- Finally click the Enable button for your module.