2017 © Pedro Peláez
 

library multi-tenant

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

image

hyn/multi-tenant

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  • Thursday, July 19, 2018
  • by Luceos
  • Repository
  • 70 Watchers
  • 915 Stars
  • 23,875 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 152 Forks
  • 13 Open issues
  • 100 Versions
  • 32 % Grown

The README.md

Packagist build status codecov Packagist Codacy Badge Join our Discord server Mentioned in Awesome Laravel, (*1)

The unobtrusive Laravel package that makes your app multi tenant. Serving multiple websites, each with one or more hostnames from the same codebase. But with clear separation of assets, database and the ability to override logic per tenant., (*2)

Suitable for marketing companies that like to re-use functionality for different clients or start-ups building the next software as a service., (*3)


Offers:, (*4)

  • Integration with the awesome Laravel framework.
  • Event driven, extensible architecture.
  • Close - optional - integration into the web server.
  • The ability to add tenant specific configs, code, routes etc.

Database separation methods:, (*5)

  • One system database and separated tenant databases (default).
  • Table prefixed in the system database.
  • Or .. manually, the way you want, by listening to an event.

Complete documentation covers more than just the installation and configuration., (*6)

  • Laravel 9.0+.
  • PHP 8.0+
  • Apache or Nginx.
  • MySQL, MariaDB, or PostgreSQL.

Please read the full requirements in the documentation., (*7)

Installation

composer require hyn/multi-tenant

Automatic service registration

Using auto discovery, the tenancy package will be auto detected by Laravel automatically., (*8)

Manual service registration

In case you want to disable webserver integration or prefer manual integration, set the dont-discover in your application composer.json, like so:, (*9)

{
    "extra": {
        "laravel": {
            "dont-discover": [
                "hyn/multi-tenant"
            ]
        }
    }
}

If you disable auto discovery you are able to configure the providers by yourself., (*10)

Register the service provider in your config/app.php:, (*11)

    'providers' => [
        // [..]
        // Hyn multi tenancy.
        Hyn\Tenancy\Providers\TenancyProvider::class,
        // Hyn multi tenancy webserver integration.
        Hyn\Tenancy\Providers\WebserverProvider::class,
    ],

Deploy configuration

First publish the configuration and migration files so you can modify it to your needs:, (*12)

php artisan vendor:publish --tag tenancy

Open the config/tenancy.php and config/webserver.php file and modify to your needs., (*13)

Make sure your system connection has been configured in database.php. In case you didn't override the system connection name the default connection is used., (*14)

Now run:, (*15)

php artisan migrate --database=system

This will run the required system database migrations., (*16)


Backers

Thank you to all our backers! 🙏 [Become a backer], (*17)

, (*18)

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor], (*19)

, (*20)

Contributors

, (*21)


License and contributing

This package is offered under the MIT license. In case you're interested at contributing, make sure to read the contributing guidelines., (*22)

Testing

Run tests using:, (*23)

vendor/bin/phpunit

If using MySQL, use:, (*24)

LIMIT_UUID_LENGTH_32=1 vendor/bin/phpunit

Please be warned running tests will reset your current application completely, dropping tenant and system databases and removing the tenancy.json file inside the Laravel directory., (*25)

Changes

All changes are covered in the changelog., (*26)

Contact

Get in touch personally using;, (*27)

The Versions

19/07 2018

5.x-dev

5.9999999.9999999.9999999-dev

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

19/07 2018

5.2.6

5.2.6.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

19/07 2018

5.2.5

5.2.5.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

19/07 2018

dev-analysis-XpDj5V

dev-analysis-XpDj5V

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

18/07 2018

dev-resolver-verification-test

dev-resolver-verification-test

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

12/07 2018

5.2.4

5.2.4.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

10/07 2018

5.2.3

5.2.3.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

09/07 2018

5.2.2

5.2.2.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

09/07 2018

5.2.1

5.2.1.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

28/06 2018

5.2.0

5.2.0.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

21/06 2018

5.2.0-beta

5.2.0.0-beta

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

13/06 2018

5.1.x-dev

5.1.9999999.9999999-dev

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

13/06 2018

5.1.17

5.1.17.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

12/06 2018

5.1.16

5.1.16.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

05/06 2018

5.1.15

5.1.15.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

04/06 2018

5.1.14

5.1.14.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

30/05 2018

dev-bkintanar_fix_seeder_command_is_not_taking_the_option_seeder

dev-bkintanar_fix_seeder_command_is_not_taking_the_option_seeder

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

22/05 2018

5.1.13

5.1.13.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

22/05 2018

dev-pgsql-fix

dev-pgsql-fix

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

14/05 2018

5.1.12

5.1.12.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

02/05 2018

5.1.11

5.1.11.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

30/04 2018

5.1.10

5.1.10.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

30/04 2018

dev-analysis-qggM16

dev-analysis-qggM16

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

26/04 2018

dev-fix-mysql-8

dev-fix-mysql-8

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

17/04 2018

5.1.9

5.1.9.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

17/04 2018

5.1.8

5.1.8.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

12/04 2018

5.1.7

5.1.7.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

12/04 2018

dev-multi-db-fix-2

dev-multi-db-fix-2

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

12/04 2018

5.1.6

5.1.6.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

12/04 2018

dev-multi-db-fix

dev-multi-db-fix

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

11/04 2018

5.1.5

5.1.5.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

11/04 2018

5.1.4

5.1.4.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

11/04 2018

5.1.3

5.1.3.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

19/03 2018

5.1.2

5.1.2.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

01/03 2018

dev-create-user-mysql-fix

dev-create-user-mysql-fix

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

21/02 2018

5.1.1

5.1.1.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

20/02 2018

5.1.0

5.1.0.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

19/02 2018

5.1.0-beta.2

5.1.0.0-beta2

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

19/02 2018

5.0.x-dev

5.0.9999999.9999999-dev

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

07/02 2018

5.1.0-beta

5.1.0.0-beta

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

30/01 2018

dev-fix_CurrentHostname_uninstantiable_error

dev-fix_CurrentHostname_uninstantiable_error

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

14/01 2018

dev-Thijmen-patch-1

dev-Thijmen-patch-1

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

15/12 2017

5.0.17

5.0.17.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

14/12 2017

5.0.16

5.0.16.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

12/12 2017

dev-mariadb-delete-user

dev-mariadb-delete-user

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

28/11 2017

5.0.15

5.0.15.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

22/11 2017

5.0.14

5.0.14.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

22/11 2017

dev-feature-no-sql-generating

dev-feature-no-sql-generating

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

06/11 2017

5.0.13

5.0.13.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

03/11 2017

5.0.12

5.0.12.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

02/11 2017

5.0.11

5.0.11.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

02/11 2017

5.0.10

5.0.10.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

01/11 2017

5.0.9

5.0.9.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

31/10 2017

5.0.8

5.0.8.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

30/10 2017

0.5.7

0.5.7.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

25/10 2017

5.0.6

5.0.6.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

19/10 2017

dev-ssl

dev-ssl

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

18/10 2017

5.0.5

5.0.5.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

12/10 2017

5.0.4

5.0.4.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

12/10 2017

5.0.3

5.0.3.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

03/10 2017

dev-travis

dev-travis

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

28/09 2017

5.0.2

5.0.2.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

27/09 2017

5.0.1

5.0.1.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

13/09 2017

5.0.0

5.0.0.0

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

06/09 2017

5.0.0-beta.8

5.0.0.0-beta8

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

31/08 2017

3.x-dev

3.9999999.9999999.9999999-dev

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

31/08 2017

4.x-dev

4.9999999.9999999.9999999-dev

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

02/08 2017

4.0.0-beta.7

4.0.0.0-beta7

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

02/08 2017

5.0.0-beta.7

5.0.0.0-beta7

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

26/07 2017

4.0.0-beta.6

4.0.0.0-beta6

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

26/07 2017

5.0.0-beta.6

5.0.0.0-beta6

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

26/07 2017

3.0.0-beta.6

3.0.0.0-beta6

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

20/07 2017

3.0.0-beta.5

3.0.0.0-beta5

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

11/07 2017

3.0.0-beta.4

3.0.0.0-beta4

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

07/07 2017

3.0.0-beta.3

3.0.0.0-beta3

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

06/07 2017

3.0.0-beta.2

3.0.0.0-beta2

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

19/06 2017

3.0.0-beta.1

3.0.0.0-beta1

Run multiple websites using the same laravel installation while keeping tenant specific data separated for fully independant multi-domain setups.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel saas tenancy multi-tenant multi-tenancy hyn

20/04 2017

dev-2.x-L-5.4

dev-2.x-L-5.4

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

23/03 2017

2.x-dev

2.9999999.9999999.9999999-dev

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

22/11 2016

2.0.1

2.0.1.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

15/10 2016

2.0.0

2.0.0.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

25/08 2016

2.0.0-beta.4

2.0.0.0-beta4

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

12/08 2016

2.0.0-beta.3

2.0.0.0-beta3

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

29/07 2016

2.0.0-beta.2

2.0.0.0-beta2

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

13/07 2016

2.0.0-beta.1

2.0.0.0-beta1

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

09/06 2016

dev-beanstalkd

dev-beanstalkd

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

01/05 2016

1.x-dev

1.9999999.9999999.9999999-dev

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

19/04 2016

1.0.1

1.0.1.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

19/04 2016

1.0.1-beta.2

1.0.1.0-beta2

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

12/01 2016

1.0.1-beta

1.0.1.0-beta

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

08/12 2015

1.0.0

1.0.0.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

07/12 2015

0.9.2

0.9.2.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

26/11 2015

0.9.1

0.9.1.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

24/11 2015

0.9.0

0.9.0.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

19/11 2015

0.8.1

0.8.1.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

19/11 2015

0.8.0

0.8.0.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy hyn

27/10 2015

0.7.5

0.7.5.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy laraflock hyn

23/10 2015

0.7.4

0.7.4.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy laraflock hyn

01/10 2015

0.7.3

0.7.3.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy laraflock hyn

01/10 2015

0.7.1

0.7.1.0

Multi tenant laravel lts with separation between tenant and system

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniël `Luceos` Klabbers

laravel multi-tenant multi-tenancy laraflock hyn