forked from graze/telnet-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "graze/telnet-client",
"description": "Telnet client written in PHP",
"keywords": [
"graze",
"telnet-client",
"telnet",
"client",
"php"
],
"homepage": "https://github.com/graze/telnet-client",
"license": "MIT",
"authors": [
{
"name": "John Smith",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Graze Developers",
"email": "[email protected]",
"homepage": "http://www.graze.com",
"role": "Development Team"
},
{
"name": "Bestnetwork",
"email": "[email protected]"
},
{
"name": "Dalibor Andzakovic",
"email": "[email protected]"
},
{
"name": "Marc Ennaji"
},
{
"name": "Matthias Blaser",
"email": "[email protected]"
},
{
"name": "Christian Hammers",
"email": "[email protected]"
}
],
"require": {
"php": ">5.5.0",
"clue/socket-raw": "^1.3"
},
"require-dev": {
"phpunit/phpunit" : "^5.0",
"symfony/var-dumper": "^3.0",
"mockery/mockery": "^0.9.4",
"squizlabs/php_codesniffer": "^3.5.0",
"graze/standards": "^2.0"
},
"autoload": {
"psr-4": {
"Graze\\TelnetClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graze\\TelnetClient\\Test\\Unit\\": "tests/unit"
}
},
"config": {
"platform": {
"ext-simplexml": "1.0",
"ext-dom": "1.0",
"ext-tokenizer": "1.0",
"ext-xmlwriter": "1.0",
"ext-sockets": "1.0",
"php": "5.6"
}
}
}