-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
38 lines (38 loc) · 853 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
{
"name": "jackiedo/xampp-vhosts-manager",
"description": "Virtual hosts and self-signed SSL certificates management system (in console mode) for Xampp on Windows OS.",
"keywords": [
"xampp",
"virtual-hosts",
"vhosts",
"ssl-certificates",
"ssl-cert",
"ssl",
"domain",
"manager",
"console"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.4"
},
"autoload": {
"files": [
"src/pre_defined.php",
"src/helpers.php"
],
"psr-4": {
"VhostsManager\\": "src/"
}
},
"scripts": {
"post-create-project-cmd": [
"xvhost.bat install"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}