PHP Package: amphp/pipeline

amphp pipeline is a PHP library that provides a powerful tool for building asynchronous data processing pipelines efficiently and effectively.

Current Version: 1.2.2
Last Updated: 2025-01-19
PHP Requirement: >=7.1
Dependencies: amphp/amp, psr/log
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

amphp pipeline is a high-performance PHP library that enables developers to create complex data processing pipelines with ease. By leveraging asynchronous processing, it offers improved efficiency and scalability for handling large volumes of data. With features like error handling and middleware support, amphp pipeline is a versatile solution for streamlining data processing workflows in PHP applications.

🔗 View on GitHub

Download Latest Version: 1.2.2

Download Download v1.2.2

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/amphp/pipeline/1.2.2/autoload.php';

use Amp\Pipeline\Pipeline;
use Amp\Pipeline\Middleware;
use Amp\Pipeline\CallableMiddleware;
use Amp\Pipeline\Exception\PipelineException;
use Psr\Log\LoggerInterface;


$obj = new Amp\Pipeline\Pipeline();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.