renanfenrich/tenant-broker

A database connector for Laravel multi-tenancy broker

1.2.0 2021-06-01 21:06 UTC

This package is auto-updated.

Last update: 2025-03-29 01:11:58 UTC


README

Installation

$ composer require renanfenrich/tenant-broker

Configuration

Publish configuration file

$ php artisan vendor:publish --tag tenant.config

Configuration files for local development should be created at "config/tenants/".

Example:

<?php

return [
    'connection' => 'mysql',
    'database' => [
        'host' => 'mysql.nasa.gov.us',
        'database' => 'jpl',
        'username' => 'root',
        'password' => 'voyager1',
    ]
];

Change log

Please see the changelog for more information on what has changed recently.

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email renan.fenrich@gmail.com instead of using the issue tracker.

License

MIT. Please see the license file for more information.