-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
42 lines (42 loc) · 1.08 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": "aldas/modbus-tcp-client",
"keywords": [
"modbus"
],
"description": "Modbus TCP protocol client library",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": "^8.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6.15",
"react/datagram": "^1.9",
"react/socket": "^1.15",
"react/child-process": "^0.6.5",
"psr/log": "^1.1.4",
"phpstan/phpstan": "^1.10.50"
},
"suggest": {
"psr/log": "Required for using the Log middleware with BinaryStreamConnection"
},
"autoload": {
"psr-4": {
"ModbusTcpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"check": "vendor/bin/phpstan analyse --no-progress",
"test": "vendor/bin/phpunit",
"test-unit": "vendor/bin/phpunit --testsuite 'unit-tests'",
"test-integration": "vendor/bin/phpunit --testsuite 'integration-tests'",
"test-ci": "vendor/bin/phpunit --coverage-clover report/coverage.xml",
"test-coverage": "vendor/bin/phpunit --coverage-html report/html"
}
}