定制 heddiyoussouf/pipeline 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

heddiyoussouf/pipeline

最新稳定版本:1.0.0

Composer 安装命令:

composer require heddiyoussouf/pipeline

包简介

A Laravel package to simplify the use of pipelines with artisan commands for step generation and an intuitive facade interface.

README 文档

README

The heddiyoussouf/pipeline package provides a simplified way to utilize Laravel's pipeline mechanism and introduces a command to rapidly generate "step" classes. It extends Laravel's pipeline functionality, allowing users to pass data through various transformations (steps) more efficiently. Features:

A make:step artisan command to quickly generate step classes.
A facade to easily interact with the pipeline.
Ability to apply a sequence of steps to a given input and get a final result.
Publishable stubs to further customize the generated step classes.

Installation

Require the package:

You can include the package in your Laravel project with the following command:

bash

composer require heddiyoussouf/pipeline

Service Provider:

Laravel will automatically register the service provider. If you're on an older version of Laravel or have disabled package discovery, add the provider manually in config/app.php:

php

'providers' => [
    // ...
    Heddiyoussouf\Pipeline\PipelineProvider::class,
],

Usage:

Generate a Step:

After installation, you can use the provided artisan command to generate step classes:

bash

php artisan make:step YourStepName

This will create a new step class inside the App\Steps directory.

Using the Pipeline:

You can easily utilize the provided pipeline with the facade:

php

use Heddiyoussouf\Pipeline\Facades\Pipeline;

$result = Pipeline::apply($initialValue, [YourStep1::class, YourStep2::class]);

Publishing PipelineProvider:

bash

php artisan vendor:publish --provider="Heddiyoussouf\Pipeline\PipelineProvider"

Once published, you can find the stubs in your project's root stubs directory.

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2023-09-08