-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 990 Bytes
/
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
{
"name": "mostbyte/multidomain",
"description": "Mostbyte domain manager",
"type": "library",
"require": {
"illuminate/support": "^11.0",
"illuminate/database": "^11.0",
"illuminate/http": "^11.0",
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"orchestra/testbench": "^9.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Mostbyte\\Multidomain\\": "src/"
},
"files": [
"helpers/DomainManagerHelper.php"
]
},
"autoload-dev": {
"psr-4": {
"MD\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Jasur Dustmurodov",
"email": "jasur.coder@gmail.com"
}
],
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Mostbyte\\Multidomain\\MultidomainServiceProvider"
]
}
}
}