Skip to content

Base functionality for 'Engines' for 51Degrees Pipeline API

License

Notifications You must be signed in to change notification settings

51Degrees/pipeline-php-engines

Repository files navigation

51Degrees PHP Pipeline Engines

51Degrees PHP Pipeline API

Developer Documentation

Introduction

This project contains the source code for the 'engines' functionality for the PHP implementation of the 51Degrees Pipeline API.

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 pipeline.php.engines 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": "*"