orchestral / facile by crynobone

Facile Component for Orchestra Platform
40,074
3
3
Package Data
Maintainer Username: crynobone
Maintainer Contact: crynobone@gmail.com (Mior Muhammad Zaki)
Package Create Date: 2013-04-01
Package Last Update: 2021-04-17
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-03-28 03:05:41
Package Statistics
Total Downloads: 40,074
Monthly Downloads: 58
Daily Downloads: 2
Total Stars: 3
Total Watchers: 3
Total Forks: 0
Total Open Issues: 1

Facile Component for Orchestra Platform

Facile Component simplify the need to create API based response in your Laravel application.

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

Table of Content

Version Compatibility

Laravel | Facile :----------|:---------- 5.5.x | 3.5.x 5.6.x | 3.6.x 5.7.x | 3.7.x 5.8.x | 3.8.x

Installation

To install through composer, simply put the following in your composer.json file:

{
    "require": {
        "orchestra/facile": "^3.5"
    }
}

And then run composer install from the terminal.

Quick Installation

Above installation can also be simplify by using the following command:

composer require "orchestra/facile=^3.5"

Configuration

Next add the service provider in config/app.php.

'providers' => [

    // ...

    Orchestra\Facile\FacileServiceProvider::class,
],

You might want to add Orchestra\Support\Facades\Facile to class aliases in config/app.php:

'aliases' => [

    // ...

    'Facile' => Orchestra\Support\Facades\Facile::class,
],