-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 1.03 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": "potherca/cli2web",
"description": "Automated web UI for any CLI command",
"type": "library",
"homepage": "https://pother.ca/cli2web",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Ben Peachey",
"email": "potherca@gmail.com",
"homepage": "https://pother.ca/"
}
],
"support": {
"source": "https://github.com/potherca/cli2web"
},
"require": {
"php":"^5.6 | ^7.0",
"hassankhan/config": "^2.0",
"mustache/mustache": "^2.12",
"vlucas/phpdotenv": "^5.0"
},
"autoload":{
"psr-4" : {
"Potherca\\WebApplication\\Generic\\": "src/"
},
"files" : [
"src/function.create_composer_context.php",
"src/function.create_content.php",
"src/function.create_context.php",
"src/function.create_form_context.php",
"src/function.load_values.php"
]
},
"config":{
"bin-dir":"bin",
"sort-packages": true
}
}