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.
installer.sh from the latest release at https://github.com/spryker-sdk/sdk/releasesinstaller.sh </path/to/install/sdk/in>spryker-sdk should be set and SPRYKER_SDK_PATH env variable should be exported. If not check our troubleshooting doc.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)"
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)"
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.
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.
Please refer to the phpstorm integration documentation for further information on how to integrate the SDK to PhpStorm.
Running the SDK in a development or debug mode is documented at development documentation
Content type
Image
Digest
sha256:d11bb5f53…
Size
426.9 MB
Last updated
about 1 month ago
docker pull spryker/php-sdk