-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 930 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 930 Bytes
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
{
"name": "harvyde/multisite",
"description": "a library for detecting sites / hosts and environments. This library can be useful to build a multisite. Multiple domains pointing to the same application. You can use this class anywhere in your application to serve content based on domain and environment site be being accessed.",
"version": "0.1.0",
"type": "library",
"license": "MIT",
"homepage": "http://www.HarvinderDeogan.com",
"keywords": [
"environments",
"multisite",
"multi domains"
],
"authors": [
{
"name": "Harvinder Singh",
"email": "mail@harvinderdeogan.com"
}
],
"minimum-stability": "dev",
"require": {},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-0": {
"Harvyde": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Harvyde\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}