-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 914 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
{
"name": "tiran133/phpwebterm",
"description": "Simple PHP Web Terminal for Server and Docker",
"require": {
"ext-pcntl": "*",
"ext-posix": "*",
"php": "^8.0",
"guzzlehttp/guzzle": "^7.9",
"illuminate/collections": "10.0|^11.0",
"ratchet/rfc6455": "^0.3.1",
"react/child-process": "^0.6.5",
"react/event-loop": "^1.5",
"react/socket": "^1.16",
"illuminate/support": "^11.34"
},
"homepage": "https://github.com/tiran133/phpwebterm",
"license": "MIT",
"autoload": {
"psr-4": {
"Phpwebterm\\": "src/"
}
},
"authors": [
{
"name": "Alexander Wolff",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Phpwebterm\\PhpWebtermServiceProvider"
],
"aliases": {
"Phpwebterm": "Phpwebterm\\Support\\Phpwebterm"
}
}
}
}