fond-of-oryx / thirty-five-up-api
Spryker Thirty Five Up API Module.
Installs: 13 090
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/fond-of-oryx/thirty-five-up-api
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(),
        ];
    }