chustilla / cakephp-fractal
An easy to use Fractal integration for CakePHP 3 applications
Installs: 10 188
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- php: >=7.2
- ext-json: *
- cakephp/cakephp: 3.7.*
- league/fractal: ^0.19.2
This package is not auto-updated.
Last update: 2025-03-29 11:33:40 UTC
README
Basic data transformation for responding from your API.
The package provide a simple wrapper around Factral for your CakePHP 3 applications, inspired by Laravel fractal.
Requirements
- PHP >=7.2
Installation
Via Composer
$ composer install chustilla/cakephp-fractal
Usage
For simpler usage, the package provide a helper
#src/Controller/VideoGamesController.php public function index() { return fractal( $this->VideoGames->find(), new VideoGameTransformer() )->respond(); }
where VideoGameTransformes is a Fractal Tranformer
For complex data structures you can use includes
fractal( $this->VideoGames->find()->contain([]), new VideoGameTransformer() )->parseIncludes(['platform']) ->respond();
License
The MIT License (MIT). Please see License File for more information.