forked from tenancy/multi-tenant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.05 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "hyn/multi-tenant",
"description": "Multi tenant laravel lts with separation between tenant and system",
"keywords": ["laravel", "multi-tenant", "multi-tenancy", "hyn"],
"license": "MIT",
"authors": [
{
"name": "Daniël `Luceos` Klabbers",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/hyn/multi-tenant/issues",
"source": "https://github.com/hyn/multi-tenant",
"docs": "https://hyn.readme.io"
},
"require": {
"php": ">=7.0.0",
"laravel/framework": "~5.3.0",
"phpseclib/phpseclib": "^2.0",
"laracasts/presenter": "~0.2.0",
"doctrine/dbal": "^2.5"
},
"require-dev": {
"phpunit/phpunit" : "5.*",
"scrutinizer/ocular": "~1.1",
"symfony/dom-crawler": "^3.1"
},
"autoload": {
"psr-4": {
"Hyn\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hyn\\Tests\\Seeds\\": "tests/database/seeds/"
}
}
}