| 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: | 2025-11-04 03:02:36 |
| Package Statistics | |
|---|---|
| Total Downloads: | 41,506 |
| Monthly Downloads: | 58 |
| Daily Downloads: | 12 |
| Total Stars: | 3 |
| Total Watchers: | 1 |
| Total Forks: | 1 |
| Total Open Issues: | 1 |
Facile Component simplify the need to create API based response in your Laravel application.
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
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.
Above installation can also be simplify by using the following command:
composer require "orchestra/facile=^3.5"
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,
],