nordsoftware/lumen-fractal
最新稳定版本:1.3.0
Composer 安装命令:
composer require nordsoftware/lumen-fractal
包简介
Fractal module for the Lumen PHP framework.
README 文档
README
Fractal module for the Lumen PHP framework.
Requirements
Setup
Installation
Run the following command to install the package through Composer:
composer require nordsoftware/lumen-fractal
Configuration
Copy the configuration template in config/fractal.php to your application's config directory and modify according to your needs.
For more information see the Configuration Files section in the Lumen documentation.
Available configuration options:
- default_serializer - Default serializer to use for serialization, defaults to null
Bootstrap
Add the following lines to bootstrap/app.php:
$app->register('Nord\Lumen\Fractal\FractalServiceProvider');
Optionally you can also use Nord\Lumen\Fractal\FractalMiddleware to parse includes automatically from the request.
$app->middleware([ ..... 'Nord\Lumen\Fractal\Middleware\FractalMiddleware', ]);
Usage
You can now use Nord\Lumen\Fractal\FractalService to access Fractal anywhere in your application.
Here is a few examples on how you can serialize data if you are using Eloquent:
public function getBook(FractalService $fractal, $id) { // load the book model ... return response()->json($fractal->item($book, new BookTransformer)->toArray()); }
public function listBooks(FractalService $fractal) { // load the book collection ... return response()->json($fractal->collection($books, new BookTransformer)->toArray()); }
Contributing
Please read the guidelines.
Running tests
Clone the project and install its dependencies by running:
composer install
Run the following command to run the test suite:
vendor/bin/codecept run unit
License
MIT, see LICENSE.
统计信息
- 总下载量: 34.12k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 30
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2016-03-05