PHPackages                             spryker-demo/merchant-registration-feature - 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-demo/merchant-registration-feature

ActiveMetapackage

spryker-demo/merchant-registration-feature
==========================================

Merchant registration \[feature\]

1.0.0(7mo ago)00proprietaryPHP &gt;=8.2CI passing

Since Sep 25Pushed 7mo agoCompare

[ Source](https://github.com/spryker-demo/merchant-registration-feature)[ Packagist](https://packagist.org/packages/spryker-demo/merchant-registration-feature)[ RSS](/packages/spryker-demo-merchant-registration-feature/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

Merchant Registration Feature Module
====================================

[](#merchant-registration-feature-module)

[![Minimum PHP Version](https://camo.githubusercontent.com/ec21f169d70b69344c67d6f18fa1a24d20476d2f0cd680e8c4a1534c22f34e5f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253345253344253230382e322d3838393242462e737667)](https://php.net/)

This feature handles merchant registration process.

### Install the required modules using Composer

[](#install-the-required-modules-using-composer)

```
composer require spryker-demo/merchant-registration-feature

```

### Add `SprykerDemo` namespace to configuration

[](#add-sprykerdemo-namespace-to-configuration)

```
$config[KernelConstants::CORE_NAMESPACES] = [
    ...
    'SprykerDemo',
];

```

### Add translations

[](#add-translations)

```
# data/import/common/common/glossary.csv

merchant.account.authorization.success,Registration Successful,en_US
merchant.account.authorization.success,Registrierung erfolgreich,de_DE
merchant.forms.accept_terms,Accept Terms,en_US
merchant.forms.accept_terms,AGB akzeptieren,de_DE
merchant.register-page.title,Registrieren und loslegen auf den Spryker Marktplatz,de_DE
merchant.register-page.title,Register and get started on the Spryker Marketplace,en_US
merchant.register-page.company-title,Registrierung des Unternehmens,de_DE
merchant.register-page.company-title,Company Registration,en_US
merchant.register-page.company-text,"Geben Sie Ihre Unternehmensdaten ein, um den Registrierungsprozess zu starten.",de_DE
merchant.register-page.company-text,"Fill in your company details to initiate your registration process.",en_US
merchant.register.registration_number,Registrierungsnummer,de_DE
merchant.register.registration_number,"Registration number",en_US
merchant.register-page.account-title,Konto erstellen,de_DE
merchant.register-page.account-title,Account Creation,en_US
merchant.register-page.account-text,"Fügen Sie die Details Ihres ersten Benutzerkontos hinzu.",de_DE
merchant.register-page.account-text,"Add the details of your first user account.",en_US
merchant.register.title,Titel der Kontaktperson,de_DE
merchant.register.title,Contact person title,en_US
merchant.register.banner-title,Werden Sie ein Spryker Händler,de_DE
merchant.register.banner-title,Become a Spryker Merchant,en_US
merchant.register.banner-button,Jetzt Registrieren,de_DE
merchant.register.banner-button,Register now,en_US
merchant.register.banner-link,/de/merchant/register,de_DE
merchant.register.banner-link,/en/merchant/register,en_US
merchant.register.step,Schritt,de_DE
merchant.register.step,Step,en_US
merchant.register.step.title-1,Registrierung,de_DE
merchant.register.step.title-1,Registration,en_US
merchant.register.step.title-2,Vertrag,de_DE
merchant.register.step.title-2,Contract,en_US
merchant.register.step.title-3,Onboarding,de_DE
merchant.register.step.title-3,Onboarding,en_US
merchant.register.step.title-4,Start beantragen,de_DE
merchant.register.step.title-4,Request Launch,en_US
merchant.register.step.text-1,"Registrieren Sie sich als neuer Händler und unterzeichnen Sie die Spryker Händlervereinbarung und vervollständigen Sie Ihr Profil im Händlerportal.",de_DE
merchant.register.step.text-1,"Register as a new merchant and sign the Spryker Merchant Agreement and complete your profile in the Merchant Portal.",en_US
merchant.register.step.text-2,"Nach der Genehmigung erwarten Sie eine Einladung zur Einrichtung Ihres Marketplace-Händlerkontos.",de_DE
merchant.register.step.text-2,"Once approved, expect an invitation to set up your Marketplace merchant account.",en_US
merchant.register.step.text-3,"Wählen Sie eine Integrationsmethode, fügen Sie Ihre Artikel hinzu und testen Sie Bestellungen.",de_DE
merchant.register.step.text-3,"Choose an integration method, add your items, and test orders.",en_US
merchant.register.step.text-4,"Wenn Sie bereit sind, beantragen Sie die Markteinführung, und wir führen eine abschließende Prüfung durch, damit Sie verkaufen können.",de_DE
merchant.register.step.text-4,"When you’re ready, request to launch and we’ll do a final review to get you selling.",en_US
merchant.register-page.validation.company_name_or_email_not_unique,Merchant email and Company name must be unique!,en_US
merchant.register-page.validation.company_name_or_email_not_unique,E-Mail des Händlers und Firmenname müssen eindeutig sein!,de_DE
merchant.register-page.validation.company_name_or_email_not_unique,L'adresse électronique du commerçant et le nom de l'entreprise doivent être uniques!,fr_FR
merchant.register-page.validation.company_name_or_email_not_unique,El correo electrónico del comerciante y el nombre de la empresa deben ser únicos!,es_ES
merchant.register-page.validation.url_not_unique,Provided URL "%s" is already taken.,en_US
merchant.register-page.validation.url_not_unique,Die angegebene URL "%s" ist bereits vergeben.,de_DE
merchant.register-page.validation.url_not_unique,L'URL "%s" fournie est déjà prise.,fr_FR
merchant.register-page.validation.url_not_unique,La URL proporcionada "%s" ya está ocupada.,es_ES

```

### Import translations

[](#import-translations)

```
console data:import:glossary

```

### Set up behavior

[](#set-up-behavior)

Activate the following plugins:

#### src/Pyz/Zed/Mail/MailDependencyProvider.php

[](#srcpyzzedmailmaildependencyproviderphp)

```
use SprykerDemo\Zed\MerchantRegistration\Communication\Plugin\Mail\MerchantRegistrationMailTypePlugin;

class MailDependencyProvider extends SprykerMailDependencyProvider
{
    /**
     * @return array
     */
    protected function getMailTypeBuilderPlugins(): array
    {
        return [
            new MerchantRegistrationMailTypePlugin(),
        ];
    }
}
```

#### src/Pyz/Yves/Router/RouterDependencyProvider.php

[](#srcpyzyvesrouterrouterdependencyproviderphp)

```
use SprykerDemo\Yves\MerchantRegistrationPage\Plugin\Router\MerchantRegistrationPageRouterProviderPlugin;

class RouterDependencyProvider extends SprykerRouterDependencyProvider
{
    /**
     * @return array
     */
    protected function getRouteProvider(): array
    {
        return [
            new MerchantRegistrationPageRouterProviderPlugin(),
        ];
    }
}
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance63

Regular maintenance activity

Popularity0

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

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

Unknown

Total

1

Last Release

229d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c6756c39a921146991fee6b4090f4130af143ee3aa7a776b688365c5f3d5b511?d=identicon)[spryker\_solution\_consulting\_demos](/maintainers/spryker_solution_consulting_demos)

---

Top Contributors

[![amansilla](https://avatars.githubusercontent.com/u/1576983?v=4)](https://github.com/amansilla "amansilla (7 commits)")[![MaryamTarekOmar](https://avatars.githubusercontent.com/u/98816701?v=4)](https://github.com/MaryamTarekOmar "MaryamTarekOmar (6 commits)")[![asaulenko](https://avatars.githubusercontent.com/u/20285714?v=4)](https://github.com/asaulenko "asaulenko (1 commits)")

### Embed Badge

![Health badge](/badges/spryker-demo-merchant-registration-feature/health.svg)

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

PHPackages © 2026

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