ml-opensource / n-meta-laravel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

N-Meta Laravel

Scrutinizer Code Quality Code Coverage Build Status Code Intelligence Status

πŸ“ Introduction

Package to enforce & parse Meta header (Default: "Client-Meta-Information")

Client-Meta-Information: [PLATFORM];[ENVIRONMENT];[APP_VERSION];[DEVICE_OS];[DEVICE]

πŸ“¦ Installation

To install this package you will need:

  • PHP 7.1+

Run

composer require monstar-lab-oss/n-meta-laravel

or setup in composer.json

monstar-lab-oss/n-meta-laravel: 1.0.x

In config/app.php (Laravel) or bootstrap/app.php (Lumen) you should add service provider

NMeta\ServiceProvider::class

Copy config over from vendor/monstar-lab-oss/n-meta-laravel/config/n-meta.php to project/config/n-meta.php

php artisan vendor:publish --provider="NMeta\ServiceProvider"

βš™ Usage

Add middleware to routes:

// in RouteServiceProvider
protected function mapApiRoutes()
{
    Route::prefix('api')
        ->middleware('api')
        ->middleware(NMetaMiddleware::class) // Add NMeta middleware
        ->namespace($this->namespace)
        ->group(base_path('routes/api.php'));
}

You can now call via function, eg:

nmeta()->getPlatform()
nmeta()->getVersion()

πŸ† Credits

This package is developed and maintained by the PHP team at Monstar Lab

πŸ“„ License

This package is open-sourced software licensed under the MIT license

About

License:MIT License


Languages

Language:PHP 100.0%