PHPackages                             spryker/b2c-demo-shop - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. spryker/b2c-demo-shop

ActiveLibrary

spryker/b2c-demo-shop
=====================

Spryker B2C Demo Shop

202604.0(1w ago)520128[21 PRs](https://github.com/spryker-shop/b2c-demo-shop/pulls)proprietaryPHPPHP &gt;=8.3CI passing

Since Nov 10Pushed 1mo ago23 watchersCompare

[ Source](https://github.com/spryker-shop/b2c-demo-shop)[ Packagist](https://packagist.org/packages/spryker/b2c-demo-shop)[ RSS](/packages/spryker-b2c-demo-shop/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (510)Versions (154)Used By (0)

Spryker B2C Demo Shop
=====================

[](#spryker-b2c-demo-shop)

[![Build Status](https://github.com/spryker-shop/b2c-demo-shop/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/spryker-shop/b2c-demo-shop/actions?query=branch:master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/efb14209b6984d1a5ead7776ac6e1815aaf6a3c42797c3073a2172162e5193e2/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f737072796b65722d73686f702f6232632d64656d6f2d73686f702f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/spryker-shop/b2c-demo-shop/?branch=master)[![Minimum PHP Version](https://camo.githubusercontent.com/9c50dc780fa576f5c39b4feff00c05345c1471be0808881a09e750b91220dc54/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253345253344253230382e332d3838393242462e737667)](https://php.net/)

Description
-----------

[](#description)

Spryker B2C Demo Shop is a collection of Spryker B2C-specific features. It suits most projects as a starting point of development and can be used to explore Spryker.

B2C Demo Shop quick start
-------------------------

[](#b2c-demo-shop-quick-start)

This section describes how to get started with the B2C Demo Shop quickly.

For detailed installation instructions, see [Install Spryker](https://docs.spryker.com/docs/dg/dev/set-up-spryker-locally/install-spryker/install-spryker.html).

### Prerequisites

[](#prerequisites)

For full installation prerequisites, see one of the following:

- [Install Docker prerequisites on MacOS](https://docs.spryker.com/docs/dg/dev/set-up-spryker-locally/install-spryker/install-docker-prerequisites/install-docker-prerequisites-on-macos.html)
- [Install Docker prerequisites on Linux](https://docs.spryker.com/docs/dg/dev/set-up-spryker-locally/install-spryker/install-docker-prerequisites/install-docker-prerequisites-on-linux.html)
- [Install Docker prerequisites on Windows](https://docs.spryker.com/docs/dg/dev/set-up-spryker-locally/install-spryker/install-docker-prerequisites/install-docker-prerequisites-on-windows-with-wsl2.html)

Recommended system requirements for MacOS:

Macbook typevCPURAM15'46GB13'24GB### Install the B2C Demo Shop

[](#install-the-b2c-demo-shop)

1. Create a project folder and clone the B2C Demo Shop and the Docker SDK:

```
mkdir spryker-b2c && cd spryker-b2c
git clone https://github.com/spryker-shop/b2c-demo-shop.git ./
git clone git@github.com:spryker/docker-sdk.git docker
```

2. Set up a desired environment:

- [Set up a development environment](#set-up-a-development-environment)
- [Set up a production-like environment](#set-up-a-production-like-environment)

#### Set up a development environment

[](#set-up-a-development-environment)

1. Bootstrap the docker setup:

```
docker/sdk boot deploy.dev.yml
```

2. If the command you've run in the previous step returned instructions, follow them.
3. Build and start the instance:

```
docker/sdk up
```

4. Switch to your branch, re-build the application with assets and demo data from the new branch:

```
git checkout {your_branch}
docker/sdk boot -s deploy.dev.yml
docker/sdk up --build --assets --data
```

> Depending on your requirements, you can select any combination of the following `up` command attributes. To fetch all the changes from the branch you switch to, we recommend running the command with all of them:
>
> - `--build` - update composer, generate transfer objects, etc.
> - `--assets` - build assets
> - `--data` - get new demo data

You've set up your Spryker B2C Demo Shop and can access your applications.

### Set up a production-like environment

[](#set-up-a-production-like-environment)

1. Bootstrap the docker setup:

```
docker/sdk boot -s
```

2. If the command you've run in the previous step returned instructions, follow them.
3. Build and start the instance:

```
docker/sdk up
```

4. Switch to your branch in one of the following ways:

- Switch to your brunch, re-build the application with assets and demo data from the new branch:

```
git checkout {your_branch}
docker/sdk boot -s
docker/sdk up --assets --data
```

- Light git checkout:

```
git checkout {your_branch}
docker/sdk boot -s

docker/sdk up
```

> Depending on your requirements, you can select any combination of the following `up` command attributes. To fetch all the changes from the branch you switch to, we recommend running the command with all of them:
>
> - `--build` - update composer, generate transfer objects, etc.
> - `--assets` - build assets
> - `--data` - get new demo data

5. Reload all the data:

```
docker/sdk clean-data && docker/sdk up && docker/sdk console q:w:s -v -s
```

You've set up your Spryker B2C Demo Shop and can access your applications.

Troubleshooting installation of the B2C Demo Shop
-------------------------------------------------

[](#troubleshooting-installation-of-the-b2c-demo-shop)

This section describes the most common issues related to the installation of the B2C Demo Shop.

For a complete troubleshooting, see [Troubleshooting Spryker installation issues](https://docs.spryker.com/docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/an-error-during-front-end-setup.html).

**when**

You get unexpected application behavior or errors.

**then**

1. Check the state of the directory:

```
git status
```

2. If there are untracked files (returned in red), and they are not necessary, remove them.
3. Restart file synchronization and rebuild the codebase:

```
docker/sdk trouble
docker/sdk boot -s deploy.dev.yml
docker/sdk up --build --assets
```

**when**You do not see the expected demo data on the Storefront.

**then**

1. Open the [queue broker](http://queue.spryker.local) and wait until all the queues are empty.
2. If the queues are empty, and the issue persists, reload the demo data:

```
docker/sdk trouble
docker/sdk boot -s deploy.dev.yml
docker/sdk up --build --assets --data
```

Contributing to the repository
------------------------------

[](#contributing-to-the-repository)

For contribution guidelines, see [Code contribution guide](https://docs.spryker.com/docs/dg/dev/code-contribution-guide.html).

###  Health Score

62

—

FairBetter than 99% of packages

Maintenance93

Actively maintained with recent releases

Popularity18

Limited adoption so far

Community33

Small or concentrated contributor base

Maturity94

Battle-tested with a long release history

 Bus Factor5

5 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~101 days

Recently: every ~69 days

Total

28

Last Release

13d ago

Major Versions

202404.0 → 202410.02024-10-30

202410.0 → 202507.02025-07-25

202507.0-p1 → 202512.02025-12-16

202512.0 → 202602.02026-02-25

202602.0 → 202604.02026-04-29

PHP version history (8 changes)2018.11.0PHP &gt;=7.1

202001.0PHP &gt;=7.2

202108.0PHP &gt;=7.3

202204.0PHP &gt;=7.4

202211.0PHP &gt;=8.0

202311.0PHP &gt;=8.1

202410.0PHP &gt;=8.2

202512.0PHP &gt;=8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/10738957?v=4)[Spryker Bot](/maintainers/spryker-bot)[@spryker-bot](https://github.com/spryker-bot)

---

Top Contributors

[![dereuromark](https://avatars.githubusercontent.com/u/39854?v=4)](https://github.com/dereuromark "dereuromark (1755 commits)")[![stereomon](https://avatars.githubusercontent.com/u/1382877?v=4)](https://github.com/stereomon "stereomon (1617 commits)")[![oliwier-spryker](https://avatars.githubusercontent.com/u/13624598?v=4)](https://github.com/oliwier-spryker "oliwier-spryker (1072 commits)")[![tamasnyulas](https://avatars.githubusercontent.com/u/3429362?v=4)](https://github.com/tamasnyulas "tamasnyulas (767 commits)")[![abitskil](https://avatars.githubusercontent.com/u/10989183?v=4)](https://github.com/abitskil "abitskil (610 commits)")[![gerner-spryker](https://avatars.githubusercontent.com/u/30629375?v=4)](https://github.com/gerner-spryker "gerner-spryker (572 commits)")[![vol4onok](https://avatars.githubusercontent.com/u/5063777?v=4)](https://github.com/vol4onok "vol4onok (539 commits)")[![PhilinTv](https://avatars.githubusercontent.com/u/376033?v=4)](https://github.com/PhilinTv "PhilinTv (436 commits)")[![nikita-lysenko](https://avatars.githubusercontent.com/u/37867489?v=4)](https://github.com/nikita-lysenko "nikita-lysenko (409 commits)")[![lmanzke](https://avatars.githubusercontent.com/u/7486693?v=4)](https://github.com/lmanzke "lmanzke (345 commits)")[![ehsanmx](https://avatars.githubusercontent.com/u/7711957?v=4)](https://github.com/ehsanmx "ehsanmx (303 commits)")[![andrew-maslov](https://avatars.githubusercontent.com/u/37797323?v=4)](https://github.com/andrew-maslov "andrew-maslov (264 commits)")[![demkos](https://avatars.githubusercontent.com/u/2093777?v=4)](https://github.com/demkos "demkos (240 commits)")[![bm13kk](https://avatars.githubusercontent.com/u/1164904?v=4)](https://github.com/bm13kk "bm13kk (191 commits)")[![tobi812](https://avatars.githubusercontent.com/u/4661988?v=4)](https://github.com/tobi812 "tobi812 (187 commits)")[![dmiseev](https://avatars.githubusercontent.com/u/32021063?v=4)](https://github.com/dmiseev "dmiseev (186 commits)")[![AsonUnique](https://avatars.githubusercontent.com/u/20453760?v=4)](https://github.com/AsonUnique "AsonUnique (178 commits)")[![a-sabaa](https://avatars.githubusercontent.com/u/1667759?v=4)](https://github.com/a-sabaa "a-sabaa (176 commits)")[![egrebenikov](https://avatars.githubusercontent.com/u/37672226?v=4)](https://github.com/egrebenikov "egrebenikov (171 commits)")[![gechetspr](https://avatars.githubusercontent.com/u/42143273?v=4)](https://github.com/gechetspr "gechetspr (137 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/spryker-b2c-demo-shop/health.svg)

```
[![Health](https://phpackages.com/badges/spryker-b2c-demo-shop/health.svg)](https://phpackages.com/packages/spryker-b2c-demo-shop)
```

###  Alternatives

[api-platform/state

API Platform state interfaces

223.4M57](/packages/api-platform-state)[api-platform/validator

API Platform validator component

223.2M10](/packages/api-platform-validator)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
