PHPackages                             spryker-shop/suite-b2b - 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-shop/suite-b2b

ActiveLibrary

spryker-shop/suite-b2b
======================

Spryker B2B Demo Shop

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

Since Nov 10Pushed 6d ago21 watchersCompare

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

READMEChangelog (10)Dependencies (550)Versions (229)Used By (0)

Spryker B2B Demo Shop
=====================

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

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

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

[](#description)

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

B2B Demo Shop quick start
-------------------------

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

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

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

1. Create a project folder and navigate into it:

```
mkdir spryker-b2b && cd spryker-b2b
```

2. Clone the B2B Demo Shop:

```
git clone https://github.com/spryker-shop/b2b-demo-shop.git ./
```

3. Clone the Docker SDK:

```
git clone git@github.com:spryker/docker-sdk.git docker
```

2. Set up a desired environment:

- [Setting up a development environment](#set-up-a-development-environment)
- [Setting 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 B2B 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 B2B Demo Shop and can access your applications.

Troubleshooting installation of the B2B Demo Shop
-------------------------------------------------

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

This section describes the most common issues related to the installation of the B2B 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

63

↑

FairBetter than 99% of packages

Maintenance98

Actively maintained with recent releases

Popularity18

Limited adoption so far

Community32

Small or concentrated contributor base

Maturity96

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 ~97 days

Recently: every ~69 days

Total

29

Last Release

12d 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 (1836 commits)")[![stereomon](https://avatars.githubusercontent.com/u/1382877?v=4)](https://github.com/stereomon "stereomon (1713 commits)")[![oliwier-spryker](https://avatars.githubusercontent.com/u/13624598?v=4)](https://github.com/oliwier-spryker "oliwier-spryker (1072 commits)")[![demkos](https://avatars.githubusercontent.com/u/2093777?v=4)](https://github.com/demkos "demkos (828 commits)")[![tamasnyulas](https://avatars.githubusercontent.com/u/3429362?v=4)](https://github.com/tamasnyulas "tamasnyulas (783 commits)")[![gerner-spryker](https://avatars.githubusercontent.com/u/30629375?v=4)](https://github.com/gerner-spryker "gerner-spryker (674 commits)")[![vol4onok](https://avatars.githubusercontent.com/u/5063777?v=4)](https://github.com/vol4onok "vol4onok (531 commits)")[![PhilinTv](https://avatars.githubusercontent.com/u/376033?v=4)](https://github.com/PhilinTv "PhilinTv (440 commits)")[![andrew-maslov](https://avatars.githubusercontent.com/u/37797323?v=4)](https://github.com/andrew-maslov "andrew-maslov (390 commits)")[![lmanzke](https://avatars.githubusercontent.com/u/7486693?v=4)](https://github.com/lmanzke "lmanzke (345 commits)")[![supproduction](https://avatars.githubusercontent.com/u/16482929?v=4)](https://github.com/supproduction "supproduction (331 commits)")[![ehsanmx](https://avatars.githubusercontent.com/u/7711957?v=4)](https://github.com/ehsanmx "ehsanmx (322 commits)")[![zamlely](https://avatars.githubusercontent.com/u/41688490?v=4)](https://github.com/zamlely "zamlely (284 commits)")[![asmarovydlo](https://avatars.githubusercontent.com/u/15832795?v=4)](https://github.com/asmarovydlo "asmarovydlo (269 commits)")[![bm13kk](https://avatars.githubusercontent.com/u/1164904?v=4)](https://github.com/bm13kk "bm13kk (241 commits)")[![egrebenikov](https://avatars.githubusercontent.com/u/37672226?v=4)](https://github.com/egrebenikov "egrebenikov (226 commits)")[![a-sabaa](https://avatars.githubusercontent.com/u/1667759?v=4)](https://github.com/a-sabaa "a-sabaa (214 commits)")[![abitskil](https://avatars.githubusercontent.com/u/10989183?v=4)](https://github.com/abitskil "abitskil (212 commits)")[![AsonUnique](https://avatars.githubusercontent.com/u/20453760?v=4)](https://github.com/AsonUnique "AsonUnique (212 commits)")[![tobi812](https://avatars.githubusercontent.com/u/4661988?v=4)](https://github.com/tobi812 "tobi812 (187 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/spryker-shop-suite-b2b/health.svg)

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

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