fond-of-oryx / thirty-five-up-api
Spryker Thirty Five Up API Module.
3.0.0
2023-02-07 12:50 UTC
Requires
- php: >=8.0
- fond-of-oryx/thirty-five-up: ^1.0.0 || ^2.0.0
- spryker/api: ^0.4.0
- spryker/api-extension: ^0.1.0
- spryker/api-query-builder: ^0.1.0
Requires (Dev)
README
What it does
Provides API endpoints for getting and patching ThirtyFiveUp orders
Installation
composer require fond-of-oryx/thirty-five-up-api
Register plugins in src/Pyz/Zed/Api/ApiDependencyProvider.php
protected function getApiResourcePluginCollection(): array
{
return [
...
new ThirtyFiveUpApiResourcePlugin(),
];
}
protected function getApiValidatorPluginCollection(): array
{
return [
...
new ThirtyFiveUpApiValidatorPlugin(),
];
}