51degrees / fiftyone.pipeline.cloudrequestengine
Cloud request engine for 51Degrees Pipeline API. Used to send requests to the 51Degrees cloud service.
Package info
github.com/51Degrees/pipeline-php-cloudrequestengine
pkg:composer/51degrees/fiftyone.pipeline.cloudrequestengine
Requires
- php: >=7.4
- 51degrees/fiftyone.pipeline.core: 4.*
- 51degrees/fiftyone.pipeline.engines: 4.*
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.39
- phpstan/phpstan: ^1.10
- phpunit/phpunit: *
This package is auto-updated.
Last update: 2026-06-13 09:35:16 UTC
README
Introduction
This project contains the source code for the CloudrequestEngine for the PHP implementation of the 51Degrees Pipeline API.
The Pipeline is a generic micro-services aggregation solution with the ability to add a range of 51Degrees and/or custom plug ins (Engines)
Tests
To run the tests in this repository, make sure PHPUnit is installed then, in the root of this repo, call:
phpunit --fail-on-warning --display-warnings --log-junit test-results.xml
Development
When making changes to this repository, it may be necessary to link to a local development version of pipeline dependencies. For information on this, see Composer local path.
For exmaple, if a development version of 51degrees/fiftyone.pipeline.core was stored locally, the location would be added with:
"repositories": [
{
"type": "path",
"url": "../../path/to/packages/pipeline-php-core"
}
]
then the dependency changed to:
"51degrees/fiftyone.pipeline.core": "*"