{
"name": "php-opcua/opcua-client",
"description": "Pure PHP OPC UA client ? binary protocol over TCP, 6 security policies, browse/read/write/subscribe/history, zero external dependencies",
"homepage": "https://github.com/php-opcua/opcua-client",
"support": {
"issues": "https://github.com/php-opcua/opcua-client/issues",
"source": "https://github.com/php-opcua/opcua-client",
"docs": "https://github.com/php-opcua/opcua-client/tree/master/doc"
},
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"PhpOpcua\\Client\\": "src/"
}
},
"authors": [
{
"name": "Gianfrancesco Aurecchia",
"email": "gianfri.aur@gmail.com"
}
],
"autoload-dev": {
"psr-4": {
"PhpOpcua\\Client\\Tests\\": "tests/"
}
},
"keywords": [
"opcua",
"opc-ua",
"opc ua",
"industrial",
"iot",
"plc",
"scada",
"automation",
"binary-protocol",
"client",
"modbus",
"sensor",
"historian",
"iiot",
"industry-4.0",
"mes",
"hmi"
],
"require": {
"php": "^8.2",
"ext-openssl": "*",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0",
"psr/event-dispatcher": "^1.0"
},
"suggest": {
"php-opcua/opcua-client-nodeset": "Code generator for NodeSet2.xml ? typed DTOs, PHP enums, and ExtensionObject codecs",
"php-opcua/opcua-session-manager": "Persist OPC UA sessions across PHP requests via a ReactPHP daemon"
},
"require-dev": {
"pestphp/pest": "^3.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"format": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes",
"format:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run --diff"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}
|