orchestra / facile
Facile Component for Orchestra Platform
Fund package maintenance!
Liberapay
paypal.me/crynobone
Installs: 41 068
Dependents: 3
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Open Issues: 1
Requires
- php: ^7.3 || ^8.0
- illuminate/contracts: ^8.0
- orchestra/support: ^6.0
- spatie/array-to-xml: ^2.0
Requires (Dev)
- orchestra/testbench: ^6.17
Suggests
- maatwebsite/excel: Allow to export XLS and XLSX (^3.0).
- dev-master / 6.x-dev
- v6.0.0
- 5.x-dev
- v5.0.0
- 4.x-dev
- v4.0.0
- 3.8.x-dev
- v3.8.1
- v3.8.0
- 3.7.x-dev
- v3.7.2
- v3.7.1
- v3.7.0
- 3.6.x-dev
- v3.6.1
- v3.6.0
- 3.5.x-dev
- v3.5.1
- v3.5.0
- 3.4.x-dev
- v3.4.0
- v3.3.1
- v3.3.0
- v3.2.1
- v3.2.0
- v3.1.5
- v3.1.4
- v3.1.3
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.1
- v3.0.0
- v2.2.0
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
This package is auto-updated.
Last update: 2024-11-18 02:35:15 UTC
README
Facile Component simplify the need to create API based response in your Laravel application.
Version Compatibility
Installation
To install through composer, run the following command from terminal:
composer require "orchestra/facile"
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, ],