Skip to content

Latest commit

 

History

History
62 lines (44 loc) · 2.13 KB

README.md

File metadata and controls

62 lines (44 loc) · 2.13 KB

Minions Component Server (Polyfill) using Laravel Routing

tests Latest Stable Version Total Downloads Latest Unstable Version License Coverage Status

Installation

Minions can be installed via composer:

composer require "katsana/minions-polyfill=^1.0"

Please ensure that you already install Minions and go through the installation and setup documentation.

Usages

To use Laravel Routing to handle RPC request you just need to setup the URI and TLD domain to handle the request. To do this this package has already add a macro to Illuminate\Routing\Router.

It is recommended that you add the command to App\Providers\RouteServiceProvider::map() method.

<?php

namespace App\Providers;

use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;

class RouteServiceProvider extends ServiceProvider
{
    // ...
    
    /**
     * Define your route model bindings, pattern filters, etc.
     *
     * @return void
     */
    public function boot()
    {
        Route::minion('rpc');

        parent::boot();
    }

    // ...
}

You can also set it to a specific domain using the following:

Route::minion('/', 'rpc.your-domain');