Download the PHP package olexin-pro/data-processing-pipeline without Composer

On this page you can find all versions of the php package olexin-pro/data-processing-pipeline. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package data-processing-pipeline

๐Ÿงญ Data Processing Pipeline for Laravel

PHP Version Laravel Version codecov

A robust, strictly-typed, and extensible data processing pipeline system for Laravel applications. Process data through a chain of isolated steps with built-in conflict resolution, priority handling, and optional execution history tracking.

โœจ Features


๐Ÿ“ฆ Installation

Publish Migrations

This creates two tables:

๐Ÿš€ Quick Start

1. Create a Pipeline Step

2. Run the Pipeline

3. Queue Execution

๐Ÿ“š Core Concepts

Pipeline Context

The context is an immutable container that holds:

Pipeline Results

Every step returns a PipelineResultInterface:

Conflict Policies

When multiple steps write to the same key:

MERGE (default)

Recursively merges arrays, respecting priorities:

OVERWRITE

Replaces previous value completely:

SKIP

Keeps the first result, ignores the rest:

CUSTOM

Define a custom resolver:

๐Ÿ”ง Advanced Usage

Priority System

Higher priority overrides lower ones in merges:

Execution History

Enable automatic logging:

Error Handling

Pipeline continues on failure:

Dynamic Steps

Add steps at runtime:

Conditional Steps

Steps can self-skip:

๐ŸŽฏ Real-World Example

๐Ÿ›  Step Generator

Create pipeline steps with a single command. By default, classes are placed under App\Pipeline\Steps and saved to app/Pipeline/Steps.

`

Nested directories

Options

Examples:

Customizing the stub


๐Ÿงช Testing

๐Ÿ“– API Reference

PipelineContext

GenericPipelineResult

๐Ÿค Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

๐Ÿ“„ License

This package is open-sourced software licensed under the MIT license.

๐Ÿ™ Credits

๐Ÿ“ง Support

For support, please open an issue on GitHub


Made with โค๏ธ for the Laravel community


All versions of data-processing-pipeline with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/support Version ^10.0 || ^11.0 || ^12.0
illuminate/contracts Version ^10.0 || ^11.0 || ^12.0
illuminate/collections Version ^10.0 || ^11.0 || ^12.0
illuminate/database Version ^10.0 || ^11.0 || ^12.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package olexin-pro/data-processing-pipeline contains the following files

Loading the files please wait ...