aviator / shaper
This package is abandoned and no longer maintained.
No replacement package was suggested.
Abstract transformers for collections and arrays.
6.0.1
2024-08-07 14:50 UTC
Requires
- php: ^8.1|^8.2
- aviator/makeable: ^0.1.0
- illuminate/database: ^10.0
Requires (Dev)
- laravel/pint: ^1.17
- phpunit/phpunit: ^8.5
- rector/rector: ^1.2
README
Overview
Shaper provides an interface and abstract classes which can be extended to create array or collection shaper classes. These classes can then be reused to shape the same sort of iterable, eg when preparing for serialization.
Installation
Via Composer:
composer require aviator/shaper
Testing
Via Composer:
composer test
Usage
Extend either the collection or array shaper and define a public method called shaper()
:
public function shaper ($item) { return [ 'mutated_name' => ucfirst($item['name') ]; }
This callback can do whatever you like. Once you've defined your class, you can instantiate it and call shape()
, which maps over your iterable and applies the callback:
$shaper = new MyArrayShaper($array); $shaped = $shaper->shape();
You can also set the iterable after instantiation:
$shaper = new MyArrayShaper(); // Returns null $shaper->get(); $shaper->set($yourArray); // Returns the array $shaper->get();
Other
License
This package is licensed with the MIT License (MIT).