norvutec/multi-tenancy

Allows multiple tenants inside a single application

Installs: 106

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

1.0.8 2025-01-06 07:47 UTC

This package is auto-updated.

Last update: 2025-03-06 08:13:44 UTC


README

The Multi-Tenancy Bundle will manage the multi-tenancy for your Symfony application.
It will allow you to have multiple tenants in your application and manage them easily.

The tenancy currently supports the following features:

  • Database Configuration per Tenant

Installation

composer require norvutec/multi-tenancy

Doctrine Configuration

doctrine:
    dbal:
        default_connection: default
        connections:
          default:
              url: '%env(resolve:DATABASE_URL)%'
              driver: 'pdo_mysql'
              charset: utf8mb4
              server_version: '10.6.16-MariaDB'
              profiling_collect_backtrace: '%kernel.debug%'
              use_savepoints: true
          tenant:
            url: '%env(resolve:DATABASE_URL)%'
            driver: 'pdo_mysql'
            charset: utf8mb4
            server_version: '10.6.16-MariaDB'
            profiling_collect_backtrace: '%kernel.debug%'
            use_savepoints: true
            wrapper_class: Norvutec\MultiTenancyBundle\Doctrine\DBAL\TenantConnection

    orm:
        default_entity_manager: default
        entity_managers:
            default:
                connection: default
                mappings:
                  System:
                      is_bundle: false
                      type: attribute
                      dir: '%kernel.project_dir%/src/Entity/System'
                      prefix: 'App\Entity\System'
                      alias: System
            tenant:
                connection: tenant
                mappings:
                  Tenant:
                    is_bundle: false
                    type: attribute
                    dir: '%kernel.project_dir%/src/Entity/Tenant'
                    prefix: 'App\Entity\Tenant'
                    alias: Tenant

Multi-Tenancy Configuration

Create File config/packages/multi_tenancy.yaml

multi_tenancy:
  tenant_class: App\Entity\System\Tenant ## Class Implementing Tenant Interface
  tenant_select_route: app_test2 ## Route for Tenant Selection redirection
  tenant_migration_config: 'config/migrations/tenant.yaml' ## Migration Configuration for Tenant