An opinionated, improved pipeline for Laravel projects to help breakdown complex logic into easily readable chunks.
You can install the package via composer:
composer require slashequip/laravel-pipeline
For full useage view the full documentation.
$pipeline = Pipeline::make();
$pipeline->send(UserRegistrationTransport::make());
$pipeline->through(
CreateUserPipe::make(),
NotifiyUserRegisteredPipe::make(),
AddUserToSegmentPipe::make(),
LogUserInPipe::make()
);
$finalTransportState = $pipeline->deliver();
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.