steffjenl / laravel-kemp
Laravel package for Kemp Loadmaster
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/steffjenl/laravel-kemp
Requires (Dev)
- php: >=7.1.3
- mockery/mockery: ^1.0
- orchestra/testbench: ^3.5
- phpunit/phpunit: ^7.0
- psy/psysh: ^0.8.13
- squizlabs/php_codesniffer: ^3.1
This package is auto-updated.
Last update: 2025-09-22 06:26:09 UTC
README
Laravel package for Kemp Loadmaster
Installation
Install the package using composer:
composer require steffjenl/laravel-kemp
On Laravel versions before 5.5 you also need to add the service provider to config/app.php
manually:
SteffjeNL\LaravelKemp\LaravelKempServiceProvider::class,
Then add this in config/services.php
:
'kemp' => [ 'ipAddress' => env('KEMP_IPADDRESS'), 'username' => env('KEMP_USERNAME'), 'password' => env('KEMP_PASSWORD'), 'certificate' => env('KEMP_CERTIFICATE', null), 'verifyCertificate' => env('KEMP_VERIFYSSL', true), ],
Finally, add the fields KEMP_IPADDRESS
, KEMP_USERNAME
and KEMP_PASSWORD
to your .env
file with the appropriate credentials.
Note: Certificate is not used yet!