-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.8 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "php-opcua/opcua-client-ext-transport-https",
"description": "OPC UA HTTPS transport (Part 6 §7.4) for PHP — Binary / JSON / XML-SOAP encodings over opc.https://, extends opcua-client",
"homepage": "https://github.com/php-opcua/opcua-client-ext-transport-https",
"support": {
"issues": "https://github.com/php-opcua/opcua-client-ext-transport-https/issues",
"source": "https://github.com/php-opcua/opcua-client-ext-transport-https",
"docs": "https://www.php-opcua.com/documentation/opcua-client-ext-transport-https"
},
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Gianfrancesco Aurecchia",
"email": "gianfri@php-opcua.com"
}
],
"keywords": [
"opcua",
"opc-ua",
"opc ua",
"https",
"transport",
"binary",
"json",
"soap",
"industrial",
"iiot",
"industry-4.0"
],
"autoload": {
"psr-4": {
"PhpOpcua\\Client\\ExtTransportHttps\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpOpcua\\Client\\ExtTransportHttps\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-openssl": "*",
"php-opcua/opcua-client": "^4.4",
"psr/log": "^3.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"pestphp/pest": "^3.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"suggest": {
"psr/http-client": "Allows wrapping any PSR-18 HTTP client via Psr18HttpClient instead of the default CurlHttpClient"
},
"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
}
},
"minimum-stability": "dev",
"prefer-stable": true
}