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

ActiveLibrary

spryker-shop/b2b-demo-marketplace
=================================

Spryker B2B Marketplace Demo Shop

202602.0(2mo ago)5013[11 PRs](https://github.com/spryker-shop/b2b-demo-marketplace/pulls)proprietaryPHPPHP &gt;=8.3CI failing

Since Apr 29Pushed 1mo ago16 watchersCompare

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

READMEChangelog (10)Dependencies (378)Versions (219)Used By (0)

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

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

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

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

[](#description)

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

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

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

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

- [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 Marketplace Demo Shop

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

1. Create a project folder and navigate into it:

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

2. Clone the B2B Marketplace Demo Shop:

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

3. Clone the Docker SDK:

```
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 B2B Marketplace 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 Marketplace Demo Shop and can access your applications.

### Automated testing

[](#automated-testing)

There are several testing frameworks integrated into this repository:

- Codeception tests that are part of this repository are located in `tests` folder and you can adjust them as needed throughout the development of your project.
- Robot Framework tests and Cypress tests that are used for testing of Spryker core features are located in separate repositories.
    - They are integrated via `composer.json`. You should remove the mentions of `spryker/cypress-tests` and `spryker/robotframework-suite-tests` from `composer.json` ("repositories" and "require-dev" sections) unless you plan to re-use these tests on your project.
    - Spryker does not guarantee these tests would work on a customized project.

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

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

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

53

—

FairBetter than 97% of packages

Maintenance86

Actively maintained with recent releases

Popularity9

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

Recently: every ~53 days

Total

16

Last Release

82d ago

Major Versions

202311.0 → 202404.02024-04-23

202404.0 → 202410.02024-10-30

202410.0 → 202507.02025-07-25

202507.0-p2 → 202512.02025-12-16

202512.0 → 202602.02026-02-25

PHP version history (5 changes)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 (1835 commits)")[![stereomon](https://avatars.githubusercontent.com/u/1382877?v=4)](https://github.com/stereomon "stereomon (1735 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 (783 commits)")[![demkos](https://avatars.githubusercontent.com/u/2093777?v=4)](https://github.com/demkos "demkos (740 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 (578 commits)")[![PhilinTv](https://avatars.githubusercontent.com/u/376033?v=4)](https://github.com/PhilinTv "PhilinTv (440 commits)")[![supproduction](https://avatars.githubusercontent.com/u/16482929?v=4)](https://github.com/supproduction "supproduction (375 commits)")[![lmanzke](https://avatars.githubusercontent.com/u/7486693?v=4)](https://github.com/lmanzke "lmanzke (345 commits)")[![andrew-maslov](https://avatars.githubusercontent.com/u/37797323?v=4)](https://github.com/andrew-maslov "andrew-maslov (337 commits)")[![ehsanmx](https://avatars.githubusercontent.com/u/7711957?v=4)](https://github.com/ehsanmx "ehsanmx (322 commits)")[![asmarovydlo](https://avatars.githubusercontent.com/u/15832795?v=4)](https://github.com/asmarovydlo "asmarovydlo (281 commits)")[![zamlely](https://avatars.githubusercontent.com/u/41688490?v=4)](https://github.com/zamlely "zamlely (260 commits)")[![bm13kk](https://avatars.githubusercontent.com/u/1164904?v=4)](https://github.com/bm13kk "bm13kk (241 commits)")[![abitskil](https://avatars.githubusercontent.com/u/10989183?v=4)](https://github.com/abitskil "abitskil (231 commits)")[![a-sabaa](https://avatars.githubusercontent.com/u/1667759?v=4)](https://github.com/a-sabaa "a-sabaa (226 commits)")[![egrebenikov](https://avatars.githubusercontent.com/u/37672226?v=4)](https://github.com/egrebenikov "egrebenikov (226 commits)")[![dmiseev](https://avatars.githubusercontent.com/u/32021063?v=4)](https://github.com/dmiseev "dmiseev (196 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-b2b-demo-marketplace/health.svg)

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

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