-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
54 lines (54 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "php-soap/psr18-wsse-middleware",
"description": "Adds WSSE security to your HTTP SOAP Transport",
"license": "MIT",
"autoload": {
"psr-4": {
"Soap\\Psr18WsseMiddleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoapTest\\Psr18WsseMiddleware\\": "src/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-dom": "*",
"ext-openssl": "*",
"azjezz/psl": "^3.0",
"paragonie/hidden-string": "^2.0",
"php-soap/psr18-transport": "^1.7",
"php-soap/engine": "^2.13",
"php-soap/xml": "^1.8",
"php-http/client-common": "^2.3",
"robrichards/wse-php": "^2.0",
"veewee/xml": "^3.0"
},
"require-dev": {
"nyholm/psr7": "^1.5",
"php-http/mock-client": "^1.5",
"symfony/http-client": "^7.1",
"phpunit/phpunit": "^11.4",
"cweagans/composer-patches": "^1.7"
},
"extra": {
"patches": {
"robrichards/wse-php": {
"Fix encryption bug": "https://patch-diff.githubusercontent.com/raw/robrichards/wse-php/pull/67.diff"
}
}
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"php-http/discovery": true
}
}
}