-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
39 lines (39 loc) · 1.07 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": "a2way/laravel-tenant-migrate",
"description": "A2Way Laravel Tenant Migrate",
"type": "library",
"keywords": ["a2way", "laravel"],
"authors": [
{
"name": "Supun Budhajeewa",
"email": "budhajeewa@gmail.com",
"homepage": "https://budhajeewa.com",
"role": "Developer"
}
],
"readme": "https://github.com/a2way-com/laravel-tenant-migrate/blob/master/README.md",
"license": "ISC",
"support": {
"email": "budhajeewa@gmail.com",
"issues": "https://github.com/a2way-com/laravel-tenant-migrate/issues"
},
"require": {
"laravel/framework": "^5.8 || ^6.0"
},
"autoload": {
"psr-4": {
"A2Way\\LaravelTenantMigrate\\": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"A2Way\\LaravelTenantMigrate\\A2WayLaravelTenantMigrateServiceProvider"
]
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14"
}
}