-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
49 lines (49 loc) · 1.26 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
40
41
42
43
44
45
46
47
48
49
{
"name": "orchestra/tenanti",
"description": "Tenant based Database Schema Manager for Laravel",
"keywords": ["laravel", "orchestral", "orchestra-platform", "multi-tenant", "schema", "migration"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Tenanti\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Orchestra\\Tenanti\\Tests\\": "tests/"
},
"classmap": [
"tests/Kernel.php"
]
},
"require": {
"php": "^7.3 || ^8.0",
"illuminate/console": "^8.40",
"illuminate/filesystem": "^8.40",
"illuminate/support": "^8.40",
"orchestra/model": "^6.0",
"orchestra/support": "^6.1"
},
"require-dev": {
"laravel/tinker": "^2.5",
"nunomaduro/larastan": "^0.7.12",
"orchestra/canvas": "^6.1",
"orchestra/testbench": "^6.22"
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}