A set of core functionality and convenience classes for a Lumen microservice.
lushdigital/microservice-core is a Laravel package for a set of core functionality and convenience classes for a lumen microservice..
It currently has 10 GitHub stars and 5.503 downloads on Packagist (latest version v1.1.2).
Install it with composer require lushdigital/microservice-core.
Discover more Laravel packages by lushdigital
or browse all Laravel packages to compare alternatives.
Last updated
A set of core functionality and convenience classes for a Lumen microservice.
This package is intended to provide a quick and easy bootstrap of functionality that a micro service is expected to provide. This includes an information route that could be used by a service registry, it also includes a health check route to verify your microservice is working.
The package also contains some convenience classes to help develop microservices.
Install the package as normal:
$ composer require lushdigital/microservice-core
Register the service provider with Lumen in the bootstrap/app.php file:
$app->register(LushDigital\MicroServiceCore\MicroServiceServiceProvider::class);