1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 20:14:04 +00:00
tenancy/CONTRIBUTING.md
Dylan Harbour 9e2cb75351 Fix issue 521: Array input for --tenants
Tenancy for Laravel docs refer to using multiple `--tenants=<...> ` options when running a command for multiple tenants explicitly: https://tenancyforlaravel.com/docs/v3/console-commands

However, the command input is not defined correctly to receive arrays.
https://laravel.com/docs/7.x/artisan#input-arrays

This PR adds a failing test, fixes the issue and corrects a typo in the contributing readme.
2020-11-04 15:33:12 +02:00

11 lines
283 B
Markdown

# Contributing
## Code style
StyleCI will flag code style violations in your pull requests.
## Running tests
Run `docker-compose up -d` to start the containers. Then run `./test` to run the tests.
When you're done testing, run `docker-compose down` to shut down the containers.