pipeline

Simple PHP pipelines

Downloads
1.3M
Stars
132
Committers
1

Pipeline

Simple PHP pipelines to use for things like middlewares.

This is just a modified version of the illuminate/pipeline repository, without the need for the illuminate container class.

(new Pipeline)
	->send($object)
    ->through($middleware)
    ->then(function(){
    	// middleware is finished
    });

Contributing

Please see CONTRIBUTING for details.

License

Pipeline is free software distributed under the terms of the MIT license.