-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1.17 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
{
"name": "php-soap/encoding",
"description": "SOAP encoding and decoding package",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Soap\\Encoding\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Soap\\Encoding\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "toonverwerft@gmail.com"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"azjezz/psl": "^3.0",
"veewee/reflecta": "~0.11",
"veewee/xml": "^3.3",
"php-soap/engine": "^2.14",
"php-soap/wsdl": "^1.12",
"php-soap/xml": "^1.8",
"php-soap/wsdl-reader": "~0.20"
},
"require-dev": {
"vimeo/psalm": "^5.26",
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "^7.0 || ^6.4",
"php-standard-library/psalm-plugin": "^2.3",
"php-soap/engine-integration-tests": "^1.9",
"php-soap/psr18-transport": "^1.7",
"guzzlehttp/guzzle": "^7.8"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}