-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
44 lines (44 loc) · 1.23 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
40
41
42
43
44
{
"name": "mudpi/mudpi-assistant",
"description": "MudPi setup application for first time configurations such as connecting to wifi.",
"version": "0.1.0",
"type": "library",
"keywords": ["mudpi", "assistant", "setup", "php", "raspberry pi", "wifi"],
"homepage": "https://mudpi.app",
"time": "2020-01-01",
"authors": [
{
"name": "Eric Davisson",
"email": "[email protected]",
"homepage": "http://ericdavisson.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/mudpi/mudpi-assistant/issues",
"source": "https://github.com/mudpi/mudpi-assistant",
"docs": "https://mudpi.app/docs"
},
"require": {
"php": "^7.2"
},
"autoload": {
"psr-4": {
"Mudpi\\": "app/",
"Mudpi\\Tools\\": "app/tools/",
"Mudpi\\Ajax\\": "app/ajax/"
},
"files": ["includes/helpers.php", "includes/config.php"]
},
"autoload-dev": {
"psr-4": {
"Mudpi\\Tests\\": "test/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}