The original post: /r/php by /u/marcosiino on 2024-12-21 21:44:34.
Hi, I’ve just published a wordpress plugins called WP-PipeFlow that uses a software I’ve built which allows to make pipelines (workflows) by concatenating stages of any kind, and allows to build custom stages.
I’m writing here because I’m considering extracting the pipeline part from the plugin and making it a standalone php library with its own repository, then distributing it via composer.
Medium article which explains the plugin and some use case:
Github repo with the sources, the docs and some other example usecases:
https://github.com/marcosiino/wp-pipeflow
Think of it like a puzzle where you can assemble blocks which perform different works (fetching data from specific rest apis, then passing that data to other data which manipulates them, then fetch other data, or send data to other services, performing operations, passing data to generative AI stages to ask to perform work on it, and so on. Your limit is only your fantasy.
I think it has a great potential as wordpress plugin, but I’m thinking about the value it could have as PHP library and I would like to have suggestions about that.
Do you think it would be useful for a PHP developer and in general for the PHP community?
Thank you!