mggflow/laravel-microservice-base

The Laravel Microservice base.

v3.0.0 2023-03-17 10:39 UTC

This package is auto-updated.

Last update: 2023-03-17 10:41:26 UTC


README

About

This project is base of microservice implements on Laravel.

Usage

  1. Create project
composer create-project mggflow/laravel-microservice-base msvc
  1. Add files to Git
git add --all
  1. Remove welcome page and set empty return
  2. Install mggflow/auth-base or use your authentication way.
    1. composer require mggflow/auth-base
    2. Add Auth Facades for auth-base: Additions, AuthControllers, RouteGroup, AuthDatabase config
    3. Tune auth database settings by env.
  3. Update dependencies
composer update
  1. Create your app logic with all advantages of Laravel. For example see app/Microservice/Controllers/MainController.php.