orchestra/facile

Orchestra 平台 Facile 组件

v6.0.0 2021-04-17 18:52 UTC

README

Facile 组件简化了在 Laravel 应用程序中创建基于 API 的响应的需求。

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

版本兼容性

安装

通过 composer 安装,请在终端中运行以下命令

composer require "orchestra/facile"

配置

接下来,将服务提供者在 config/app.php 中添加。

'providers' => [

    // ...

    Orchestra\Facile\FacileServiceProvider::class,
],

您可能想在 config/app.php 中的类别名中添加 Orchestra\Support\Facades\Facile

'aliases' => [

    // ...

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