Download the PHP package hakam/multi-tenancy-bundle without Composer

On this page you can find all versions of the php package hakam/multi-tenancy-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package multi-tenancy-bundle

Symfony Multi-Tenancy Bundle

Multi-Tenancy Bundle (Desktop Wallpaper)

The Multi Tenancy Bundle for Symfony is a convenient solution for incorporating multi-tenant databases in your Symfony application. It simplifies the process of using Doctrine to handle multiple databases with a single entity manager, allowing you to switch between them during runtime.

This bundle comes with a range of features, including the ability to effortlessly switch between tenant databases by triggering an event. Additionally, it supports distinct entity mapping for both the main and tenant entities. It also includes custom extended Doctrine commands for managing tenant databases independently, as well as the capability to generate and execute migrations for each database separately.

In the near future, you will also be able to execute bulk migrations for all tenant databases with a single command. Additionally, the bundle allows you to create and prepare a tenant database if it doesn't already exist

Supported Databases:

Installation

This bundle requires

Install using Composer

Using the Bundle

The idea behind this bundle is simple,You have a main database and multi-tenant databases So:
  1. Create specific entity witch should implement TenantDbConfigurationInterface. In your main database to save all tenant databases configurations.
  2. You can use the TenantDbConfigTrait to implement the full required db config entity fields .
    1. You can use the TimestampableTrait to add createdAt and updatedAt fields to your entity then you should add #[ORM\HasLifecycleCallbacks] attribute to your entity class.
    2. Split your entities in two directories, one for the main database and one for the tenant databases. For example Main and Tenant.
    3. Split the migrations in two directories, one for the main database and one for the tenant databases. For example Main and Tenant.
    4. Update your doctrine config to use the new directories for entities and migrations.See the example below.

You MUST config the default connection and the default entity manager to use the main database. see the example above, for the complete configuration

You just need to update the config for the main EntityManager , Then the bundle will handle the rest for you.

  1. Add the TenantEntityManager to your service or controller arguments.
  2. Dispatch SwitchDbEvent with a custom value for your tenant db Identifier. Example new SwitchDbEvent(1)
  3. You can switch between all tenants dbs just by dispatch the same event with different db identifier.
  4. Now your instance from TenantEntityManager is connected to the tenant db with Identifier = 1.
  5. ts recommended having your tenant entities in a different directory from your Main entities.
  6. You can execute doctrine migration commands using our proxy commands for tenant database.

    php bin/console tenant:database:create   # t:d:c  for short , To create and exceute  migraiton for non exist tenant db
    
    php bin/console tenant:migration:diff 1   # t:m:d 1 for short , To generate migraiton for tenant db  => 1
    
    php bin/console tenant:migration:migrate 1  # t:m:m 1, To run migraitons for tenant db  => 1
    
    # Pass tenant identifier is optional and if it null the command will be executed on the defualt tenant db. 
    # You can use the same options here for the same doctrine commands.

    Example

    You can check this project example Multi-Tenant Bundle Example to see how to use the bundle.

Notes:

All the doctrine migration commands and files is generated and executed especially for tenant databases independent of the main db migrations, Thanks for Doctrine migration bundle v3+ .

All the tenant databases migrations will be saved in the same directory you configured for tenant entities.

All the tenant databases has the same host ,username and password as the main database. we will support different host, username and password for tenant dbs in the near future.

Get Started Example

  1. After configure the bundle as we mentioned above , you can use the following steps to get started.
  2. You need to generate the main database migration with the new entity first. example php bin/console doctrine:migrations:diff
  3. Then migrate the main database. example php bin/console doctrine:migrations:migrate
  4. Now you are ready to create new tenant databases and switch between them.
  5. To create a new tenant database and execute the migration for it. Add the TenantDbConfig entity to your main database. then you can use the following command. example php bin/console tenant:database:create this command will create a new tenant database and execute the migration for it.
  6. To switch to a tenant database. example $this->dispatcher->dispatch(new SwitchDbEvent($tenantDb->getId())); then you can use the TenantEntityManager to execute your queries.
  7. You can add a relation between your tenant entity and the TenantDbConfig entity to get the tenant db config easily.

  8. You can use the custom doctrine commands for tenant databases to perform the same doctrine commands on tenant databases. example php bin/console tenant:migration:diff 1 to generate migration for tenant db with id = 1. example php bin/console tenant:migration:migrate 1 to execute migration for tenant db with id = 1.
  9. Now You can work with the TenantEntityManager as you work with the main entity manager.
  10. You can now add or delete entities from the main or tenant databases and generate migrations for each database separately.

    Configuration

    In this example below you can find the list of all configuration parameters required witch you should create in config/packages/hakam_multi_tenancy.yaml with this configuration:

Suggested Patterns For Use

User

Store the users current tenant ID in the session or the User entity. This allows you to get the current tenant at any time.

Tenant Interface

Implement an interface on all your tenant entities. This allows you to identify if an entity is assicated with a tenant object. Then you can get the current tenant ID from the current user, and switch the entity manager to the tenant DB.

Custom Controller

Extend your base controller class to overwrite some of the normal controler functions for presistance.

Custom Value Resolver

Symfony uses an Entity Value Resolver to load entities assicated with parameters passed to controller actions. https://symfony.com/doc/current/controller/value_resolver.html

This resolver is essential to making sure your IsGranted and other Security actions work in the controllers.

Create a custom entity value resolver to switch based on a ReflectionClass of the entity (based on the TenantEntityInterface).

You can copy the value rosolver here: https://github.com/symfony/symfony/blob/6.2/src/Symfony/Bridge/Doctrine/ArgumentResolver/EntityValueResolver.php

And modify it to exclude non TenantEntityIntrface objects. Then switch DB based on the current user tenant.

Add the value resolver as a service.

Contribution

Want to contribute? Great!

License

MIT

Free Software, Hell Yeah!


All versions of multi-tenancy-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1|^8.2|^8.3
symfony/config Version ^5.4.1 | ^v6.4.0|^7.0
symfony/dependency-injection Version ^5.4.1| ^v6.4.0|^7.0
symfony/http-kernel Version ^5.4.1| ^v6.4.0|^7.0
doctrine/doctrine-bundle Version ^2.7
doctrine/doctrine-migrations-bundle Version ^3.0
symfony/orm-pack Version ^2.0
doctrine/annotations Version ^2.0
symfony/filesystem Version ^6.4|^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package hakam/multi-tenancy-bundle contains the following files

Loading the files please wait ....