forked from wireshell/wireshell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.28 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
45
46
47
48
49
50
{
"name": "wireshell/wireshell",
"description": "An extendable ProcessWire command line interface",
"keywords": ["processwire"],
"license": "MIT",
"authors": [
{
"name": "Marcus Herrmann",
"homepage": "https://bigger-on-the-inside.net"
},
{
"name": "Hari K T",
"homepage": "http://harikt.com"
},
{
"name": "Bea David",
"homepage": "http://justonestep.de/"
},
{
"name": "Camilo Castro",
"homepage": "http://www.cervezapps.cl"
},
{
"name": "Jonathan Lahijani",
"homepage": "http://jonathanlahijani.com/"
}
],
"bin": [
"wireshell"
],
"autoload": {
"psr-4": {
"Wireshell\\": "src/"
}
},
"require": {
"php": ">=8.0.0",
"symfony/console": "~v6.2.8",
"rah/danpu": "~2.7.0",
"guzzlehttp/guzzle": "~7.5.1",
"monolog/monolog": "~3.3.1",
"symfony/filesystem": "~v6.2.7",
"raulfraile/distill": "~v0.9.10"
},
"require-dev": {
"phpunit/phpunit": "10.1.1",
"ofbeaton/console-tester": "^1.1.0",
"whatthejeff/nyancat-phpunit-resultprinter": "~v2.0.0"
}
}