-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.81 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"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/",
"Soap\\Encoding\\Benchmarks\\": "benchmarks/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "toonverwerft@gmail.com"
}
],
"require": {
"php": "~8.4.0 || ~8.5.0",
"php-standard-library/collection": "^6.1",
"php-standard-library/dict": "^6.1",
"php-standard-library/encoding": "^6.1",
"php-standard-library/foundation": "^6.1",
"php-standard-library/fun": "^6.1",
"php-standard-library/iter": "^6.1",
"php-standard-library/option": "^6.1",
"php-standard-library/regex": "^6.1",
"php-standard-library/result": "^6.1",
"php-standard-library/str": "^6.1",
"php-standard-library/type": "^6.1",
"php-standard-library/vec": "^6.1",
"veewee/reflecta": "~0.16",
"veewee/xml": "^4.10",
"php-soap/engine": "^2.20",
"php-soap/wsdl": "^1.19",
"php-soap/xml": "^1.10",
"php-soap/wsdl-reader": "^0.32"
},
"require-dev": {
"vimeo/psalm": "~6.13",
"phpunit/phpunit": "~12.4",
"php-cs-fixer/shim": "~3.88",
"symfony/var-dumper": "^7.0 || ^6.4",
"php-standard-library/psalm-plugin": "^2.3",
"php-soap/engine-integration-tests": "^1.12",
"php-soap/psr18-transport": "^2.0",
"guzzlehttp/guzzle": "^7.8",
"phpbench/phpbench": "^1.6"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}