fond-of-oryx / thirty-five-up-api
Spryker Thirty Five Up API Module.
2.0.0
2023-01-24 12:59 UTC
Requires
- php: >=8.0
- fond-of-oryx/thirty-five-up: ^1.0.0 || ^2.0.0
- spryker/api: ^0.1.0 || ^0.2.0 || ^0.3.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(),
];
}