PHPackages                             spryker/b2c-demo-shop-internal - 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-internal

ActiveLibrary

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

Spryker B2C Marketplace Demo Shop

202602.0(2mo ago)9013[17 PRs](https://github.com/spryker-shop/b2c-demo-marketplace/pulls)proprietaryPHPPHP &gt;=8.3CI passing

Since Aug 31Pushed 1mo ago14 watchersCompare

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

READMEChangelog (10)Dependencies (332)Versions (117)Used By (0)

Spryker B2C Demo Marketplace
============================

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

[![Build Status](https://github.com/spryker-shop/b2c-demo-marketplace/workflows/CI/badge.svg)](https://github.com/spryker-shop/b2c-demo-marketplace/actions?query=workflow%3ACI)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/8cc38fec16635c12f59fd77240e7b53c9b64642a1f21426733b80dd137dea16c/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f737072796b65722d73686f702f6232632d64656d6f2d6d61726b6574706c6163652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/spryker-shop/b2c-demo-marketplace/?branch=master)[![Minimum PHP Version](https://camo.githubusercontent.com/9c50dc780fa576f5c39b4feff00c05345c1471be0808881a09e750b91220dc54/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253345253344253230382e332d3838393242462e737667)](https://php.net/)

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

[](#description)

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

B2C Demo Marketplace quick start
--------------------------------

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

This section describes how to get started with the B2C Demo Marketplace 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 Marketplace

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

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

```
mkdir spryker-b2c-marketplace && cd spryker-b2c-marketplace
git clone https://github.com/spryker-shop/b2c-demo-marketplace.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 Marketplace 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 Marketplace and can access your applications.

Troubleshooting installation of the B2C Demo Marketplace
--------------------------------------------------------

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

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

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

54

—

FairBetter than 97% of packages

Maintenance87

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community28

Small or concentrated contributor base

Maturity83

Battle-tested with a long release history

 Bus Factor6

6 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 ~96 days

Recently: every ~120 days

Total

18

Last Release

77d ago

Major Versions

202311.0 → 202404.02024-04-23

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

PHP version history (6 changes)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 (1609 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 (596 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 (521 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)")[![asmarovydlo](https://avatars.githubusercontent.com/u/15832795?v=4)](https://github.com/asmarovydlo "asmarovydlo (396 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)")[![AsonUnique](https://avatars.githubusercontent.com/u/20453760?v=4)](https://github.com/AsonUnique "AsonUnique (253 commits)")[![demkos](https://avatars.githubusercontent.com/u/2093777?v=4)](https://github.com/demkos "demkos (244 commits)")[![dmiseev](https://avatars.githubusercontent.com/u/32021063?v=4)](https://github.com/dmiseev "dmiseev (226 commits)")[![a-sabaa](https://avatars.githubusercontent.com/u/1667759?v=4)](https://github.com/a-sabaa "a-sabaa (196 commits)")[![tobi812](https://avatars.githubusercontent.com/u/4661988?v=4)](https://github.com/tobi812 "tobi812 (195 commits)")[![bm13kk](https://avatars.githubusercontent.com/u/1164904?v=4)](https://github.com/bm13kk "bm13kk (191 commits)")[![ilyakubanov](https://avatars.githubusercontent.com/u/45764294?v=4)](https://github.com/ilyakubanov "ilyakubanov (187 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

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

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

###  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)
