The Spryker SDK aims to provide a single entry point to accelerate your productivity working with Spryker.

Installs: 299

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 12

Forks: 4

Open Issues: 6

Type:project

0.7.9 2024-03-12 18:53 UTC

This package is auto-updated.

Last update: 2024-04-15 11:44:55 UTC


README

Build Status codecov Latest Stable Version Minimum PHP Version PHPStan

The Spryker SDK aims to provide a single entry point to accelerate your productivity working with Spryker. No matter if you want to validate existing code, implement new features with Spryker or go live with your project, the Spryker SDK provides you the tools to fulfill your mission faster and cut out the boring parts of the development, so you can focus developing exciting features for your business case.

Installation

Installation into the current dir:

PATH_TO_SDK=$(pwd) \
&& curl -fL github.com/spryker-sdk/sdk/releases/latest/download/installer.sh -O \
&& chmod +x installer.sh \
&& ./installer.sh "${PATH_TO_SDK}" \
&& rm -f installer.sh \
&& if [ -e ~/.zshrc ]; then source ~/.zshrc; else source ~/.bashrc; fi; \
echo "Current SDK version: $(spryker-sdk --version)"

Update

Can be executed from any directory. The path will be taken from the SPRYKER_SDK_PATH env variable

curl -fL github.com/spryker-sdk/sdk/releases/latest/download/installer.sh -O \
&& chmod +x installer.sh \
&& ./installer.sh --self-update \
&& rm -f installer.sh \
&& echo "Current SDK version: $(spryker-sdk --version)"

Getting started

To get an overview on the available capabilities of the Spryker SDK please run spryker-sdk list

Any task can be executed by running spryker-sdk <task-id> from project root folder. Using bin/consolespryker-sdk <task-id> -h will give a description on what options can be passed into the task.

Extending the SDK capabilities

Pleaser refer to the extension documentation for further information on how to extend the SDK. Extensions to the SDK should follow the SDK conventions. For maintaining an extension of the SDK please refer to the lifecycle management.

PhpStorm Command Line Tools

Please refer to the phpstorm integration documentation for further information on how to integrate the SDK to PhpStorm.

Running the SDK as a developer

Running the SDK in a development or debug mode is documented at development documentation