-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
48 lines (48 loc) · 1018 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
44
45
46
47
48
{
"name": "ballen/pirrot",
"description": "A UHF/VHF radio repeater controller for RaspberryPi",
"type": "project",
"keywords": [
"repeater",
"simplex",
"ham",
"radio",
"parrot",
"pirrot",
"ham",
"vhf",
"uhf"
],
"license": "MIT",
"authors": [
{
"name": "Bobby Allen",
"email": "[email protected]",
"homepage": "https://bobbyallen.me",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"docs": "https://pirrot.bobbyallen.me",
"source": "https://github.com/allebb/pirrot",
"issues": "https://github.com/allebb/pirrot/issues",
"wiki": "https://github.com/allebb/pirrot/wiki"
},
"require": {
"php": ">=7.3",
"ballen/clip": "^2.0",
"ballen/executioner": "^3.0",
"ballen/gpio": "^1.0",
"ext-pcntl": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-ftp": "*",
"ext-sqlite3": "*"
},
"autoload": {
"psr-4": {
"Ballen\\Pirrot\\": "app/"
}
}
}