1 Star 0 Fork 2

tonyang / modbus-tcp-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
composer.json 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
{
"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.0",
"react/datagram": "^1.8",
"react/socket": "^1.10",
"react/child-process": "^0.6",
"psr/log": "^1.0",
"phpstan/phpstan": "^1.5"
},
"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"
}
}
1
https://gitee.com/xuxiaowu/modbus-tcp-client.git
git@gitee.com:xuxiaowu/modbus-tcp-client.git
xuxiaowu
modbus-tcp-client
modbus-tcp-client
master

搜索帮助