Skip to content

keystonephp/multitenancy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Multitenancy

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages