fond-of-oryx/thirty-five-up-api

Spryker Thirty Five Up API Module.

3.0.0 2023-02-07 12:50 UTC

This package is auto-updated.

Last update: 2024-03-27 11:54:45 UTC


README

license

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(),
        ];
    }