keystone/multitenancy

0.1.4 2017-06-07 20:23 UTC

This package is not auto-updated.

Last update: 2024-04-28 00:34:59 UTC


README

A helpful library for multitenancy support in Symfony applications.

What it does:

  • Determine the tenant from a route parameter.
  • Scope ORM queries to the current tenant.
  • Scope new entities to the current tenant.
  • Sets the default route parameter.
  • Controller argument resolver for the tenant.

Installation

Use Composer to install the package:

composer require keystone/multitenancy

Add the Symfony bundle to your kernel and configure it:

public function registerBundles()
{
    $bundles[] = new Keystone\Multitenancy\Bundle\KeystoneMultitenancyBundle();
}
keystone_multitenancy:
  tenant_repository_id: app.repository.tenant
  tenant_route_parameter: tenantSubdomain
  tenant_filter_column: tenant_id