-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.18 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (85 loc) · 2.18 KB
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
77
78
79
80
81
82
83
84
85
{
"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://www.php-opcua.com/documentation/laravel-opcua"
},
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"PhpOpcua\\Client\\": "src/"
}
},
"authors": [
{
"name": "Gianfrancesco Aurecchia",
"email": "gianfri@php-opcua.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",
"phpstan/phpstan": "^2.2"
},
"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",
"phpstan": "phpstan analyse --memory-limit=1G",
"test": [
"Composer\\Config::disableProcessTimeout",
"pest"
],
"test:unit": [
"Composer\\Config::disableProcessTimeout",
"pest --exclude-group=integration"
],
"test:integration": [
"Composer\\Config::disableProcessTimeout",
"pest --group=integration"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}