-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.1 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
{
"name": "graze/dynamark3-client",
"description": "A Dynamark Communication Protocol 3 client, written in PHP",
"require-dev": {
"symfony/var-dumper": "^3.0",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^3.0",
"graze/standards": "^2.0"
},
"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"
}
},
"autoload": {
"psr-4": {
"Graze\\Dynamark3Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graze\\Dynamark3Client\\Test\\": "tests/src",
"Graze\\Dynamark3Client\\Test\\Unit\\": "tests/unit",
"Graze\\Dynamark3Client\\Test\\Functional\\": "tests/functional"
}
},
"authors": [
{
"name": "John Smith",
"email": "[email protected]"
}
],
"require": {
"graze/telnet-client": "^2.0"
}
}