Looking to hire Laravel developers? Try LaraJobs

laravel-pipeline maintained by slashequip

Description
An opinionated, improved pipeline for Laravel projects to help breakdown complex logic into easily readable chunks.
Author
Last update
2026/01/12 07:19 (dev-dependabot/github_actions/dependabot/fetch-metadata-2.5.0)
License
Downloads
11

Comments
comments powered by Disqus

Laravel Pipeline

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

An opinionated, improved pipeline for Laravel projects to help breakdown complex logic into easily readable chunks.

Installation

You can install the package via composer:

composer require slashequip/laravel-pipeline

Usage

For full usage view the full documentation.

$pipeline = Pipeline::make();
$pipeline->send(UserRegistrationTransport::make());
$pipeline->through(
    CreateUserPipe::make(),
    NotifyUserRegisteredPipe::make(),
    AddUserToSegmentPipe::make(),
    LogUserInPipe::make()
);
$finalTransportState = $pipeline->deliver();

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.