retro-blenders / laminas-process-pilot-client
Integrates the process-pilot-client into your Laminas application
Requires
- php: ~8.1.0 || ~8.2.0 || ~8.3.0
- laminas/laminas-modulemanager: *
- laminas/laminas-servicemanager: *
- retro-blenders/process-pilot-client: *
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-14 17:41:26 UTC
README
Integrates the process-pilot-client into your Laminas application
Package Implementation Guide for Laminas Applications
This guide will walk you through the process of adding this package to your Laminas application.
Steps
-
Add the Package Using the
composer
tool, add the package with the following command:composer require retro-blenders/laminas-process-pilot-client
-
Enable the Module Enable the module by adding it to your
modules.config.php
file:<?php return [ ...Existing Modules..., 'ProcessPilot\Laminas\Client', ];
This modul will autoregister itself into your application. As long the module is enabled and the settings are given.
-
**Configure ** add your given information into you application settings in folder
config/autoload/
asprocess-pilot.global.php
return [ 'process-pilot' => [ 'host' => 'process-pilot.com', 'project_hash' => '<your project hash>', 'project_id' => '<your project id', 'enabled' => true, ], ];
Support
If you run into any issues or require further assistance, feel free to open an issue on this repository.