├── .github └── workflows │ └── quality-assurance.yml ├── LICENSE ├── UPGRADE.md ├── composer.json ├── docs ├── .gitignore ├── CNAME ├── _data │ ├── images.yml │ ├── menu.yml │ └── project.yml ├── _layouts │ └── default.html ├── index.md ├── installation.md └── usage.md └── src ├── FingersCrossedProcessor.php ├── InterruptibleProcessor.php ├── Pipeline.php ├── PipelineBuilder.php ├── PipelineBuilderInterface.php ├── PipelineInterface.php ├── ProcessorInterface.php └── StageInterface.php /.github/workflows/quality-assurance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/.github/workflows/quality-assurance.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/composer.json -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | pipeline.thephpleague.com -------------------------------------------------------------------------------- /docs/_data/images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/docs/_data/images.yml -------------------------------------------------------------------------------- /docs/_data/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/docs/_data/menu.yml -------------------------------------------------------------------------------- /docs/_data/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/docs/_data/project.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/docs/usage.md -------------------------------------------------------------------------------- /src/FingersCrossedProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/src/FingersCrossedProcessor.php -------------------------------------------------------------------------------- /src/InterruptibleProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/src/InterruptibleProcessor.php -------------------------------------------------------------------------------- /src/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/src/Pipeline.php -------------------------------------------------------------------------------- /src/PipelineBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/src/PipelineBuilder.php -------------------------------------------------------------------------------- /src/PipelineBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/src/PipelineBuilderInterface.php -------------------------------------------------------------------------------- /src/PipelineInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/src/PipelineInterface.php -------------------------------------------------------------------------------- /src/ProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/src/ProcessorInterface.php -------------------------------------------------------------------------------- /src/StageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/pipeline/HEAD/src/StageInterface.php --------------------------------------------------------------------------------