facile maintained by orchestra
Description
Facile Component for Orchestra Platform
Author
Last update
2017/09/03 05:51 (dev-master)
License
Downloads
29 169
Tags
Last update
2017/09/03 05:51
License
Require
- spatie/array-to-xml ~2.0
- php >=7.0
- illuminate/contracts ~5.5.0
- orchestra/support ~3.5.0
Last update
2017/07/04 11:45
License
Require
- php >=5.6.0
- orchestra/support ~3.4.0
- spatie/array-to-xml ~2.0
- illuminate/contracts ~5.4.24
Last update
2017/01/22 04:08
License
Require
- php >=5.6.0
- illuminate/contracts ~5.4.0
- orchestra/support ~3.4.0
- spatie/array-to-xml ~2.0
Last update
2016/07/31 12:40
License
Require
- php >=5.6.0
- illuminate/contracts ~5.3.0
- orchestra/support ~3.3.0
- spatie/array-to-xml ~2.0
Last update
2016/06/20 05:51
License
Require
- php >=5.6.0
- illuminate/contracts ~5.3.0
- orchestra/support ~3.3.0
- spatie/array-to-xml ~2.0
Last update
2016/06/20 05:46
License
Require
- php >=5.5.0
- illuminate/contracts ~5.2.0
- orchestra/support ~3.2.3
- spatie/array-to-xml ~2.0
Last update
2016/06/20 05:46
License
Require
- php >=5.5.0
- illuminate/contracts ~5.2.0
- spatie/array-to-xml ~2.0
- orchestra/support ~3.2.3
Last update
2016/06/20 05:41
License
Require
- php >=5.5.0
- illuminate/contracts ~5.1.0
- spatie/array-to-xml ~2.0
- orchestra/support ~3.1.0
Last update
2016/06/20 05:41
License
Require
- php >=5.5.0
- illuminate/contracts ~5.1.0
- orchestra/support ~3.1.0
- spatie/array-to-xml ~2.0
Last update
2016/06/14 21:16
License
Require
- php >=5.6.0
- illuminate/contracts ~5.3.0
- orchestra/support ~3.3.0
- spatie/array-to-xml ~2.0
Last update
2015/12/20 13:27
License
Require
- php >=5.5.0
- illuminate/contracts ~5.2.0
- orchestra/support ~3.2.0
- spatie/array-to-xml ~2.0
Last update
2015/10/13 13:20
License
Require
- php >=5.5.0
- illuminate/contracts ~5.1.0
- orchestra/support ~3.1.0
- spatie/array-to-xml ~2.0
Last update
2015/10/08 23:17
License
Require
- php >=5.5.0
- illuminate/contracts ~5.1.0
- orchestra/support-facades ~3.1.0
- spatie/array-to-xml ~2.0
Last update
2015/07/08 23:02
License
Require
- php >=5.5.0
- illuminate/contracts ~5.1.0
- orchestra/support-facades ~3.1.0
Last update
2015/06/17 13:45
License
Require
- php >=5.5.0
- illuminate/contracts ~5.1.0
- orchestra/support-facades ~3.1.0
Last update
2015/05/27 05:28
License
Require
- php >=5.4.0
- illuminate/contracts 5.0.*
- orchestra/support-facades 3.0.*
Last update
2015/05/19 01:37
License
Require
- php >=5.4.0
- illuminate/contracts 5.0.*
- orchestra/support-facades 3.0.*
Last update
2015/05/17 05:36
License
Require
- php >=5.4.0
- illuminate/contracts 5.1.*
- orchestra/support-facades 3.1.*
Last update
2015/02/05 12:21
License
Require
- php >=5.4.0
- illuminate/contracts 5.0.*
- orchestra/support-facades 3.0.*
comments powered by Disqus
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 |
6.x | 4.x |
7.x | 5.x |
To install through composer, run the following command from terminal:
composer require "orchestra/facile"
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,
],