-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
50 lines (50 loc) · 1.35 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
{
"name": "php-soap/psr18-transport",
"description": "PSR-18 HTTP Client transport for SOAP",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Soap\\Psr18Transport\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoapTest\\Psr18Transport\\": "tests/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-dom": "*",
"php-soap/engine": "^2.13",
"php-soap/wsdl": "^1.12",
"php-soap/xml": "^1.8",
"php-http/discovery": "^1.12",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message-implementation": "^1.0",
"psr/http-message": "^1.0.1|^2.0",
"veewee/xml": "^3.0",
"php-http/client-common": "^2.3"
},
"require-dev": {
"ext-soap": "*",
"nyholm/psr7": "^1.5",
"php-http/mock-client": "^1.5",
"php-soap/ext-soap-engine": "^1.7",
"php-soap/engine-integration-tests": "^1.9",
"phpunit/phpunit": "^10.0 || ^11.0",
"guzzlehttp/guzzle": "^7.5"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}