forked from bensonarts/soap-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "phpro/soap-client",
"description": "A general purpose SoapClient library",
"keywords": ["soap"],
"license": "MIT",
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"ext-soap": "*",
"ext-xml": "*",
"doctrine/collections": "~1.3",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.0",
"symfony/console": "~4.0",
"symfony/event-dispatcher": "~4.0",
"symfony/filesystem": "~4.0",
"symfony/validator": "^4.0|^5.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3.2",
"guzzlehttp/promises": "^1.3.1",
"guzzlehttp/psr7": "^1.4.2",
"jakub-onderka/php-parallel-lint": "^1.0",
"ocramius/package-versions": "^1.1.2",
"ocramius/proxy-manager": "^2.0.2",
"php-http/client-common": "^1.6",
"php-http/discovery": "^1.3",
"php-http/guzzle6-adapter": "^1.1.1",
"php-http/httplug": "^1.1",
"php-http/message": "^1.6",
"php-http/message-factory": "^1.0",
"php-http/mock-client": "^1.0",
"php-vcr/php-vcr": "1.4.5",
"php-vcr/phpunit-testlistener-vcr": "3.0",
"phpro/grumphp": "~0.11",
"phpspec/phpspec": "~7.0",
"phpspec/prophecy": "~1.7",
"phpunit/phpunit": "~6.0",
"psr/http-message": "^1.0",
"robrichards/wse-php": "^2.0.2",
"robrichards/xmlseclibs": "^3.0",
"squizlabs/php_codesniffer": "~2.7",
"zendframework/zend-code": "^3.1.0"
},
"suggest": {
"doctrine/common": "For caching SOAP responses",
"php-http/client-implementation": "For gaining control over the HTTP layer",
"psr/http-message": "For gaining control over the HTTP layer",
"php-http/httplug": "For gaining control over the HTTP layer",
"php-http/message-factory": "For gaining control over the HTTP layer",
"php-http/discovery": "For gaining control over the HTTP layer",
"php-http/message": "For gaining control over the HTTP layer",
"php-http/client-common": "For gaining control over the HTTP layer",
"monolog/monolog": "For logging SOAP transactions",
"robrichards/wse-php": "If you want to use the WSA or WSSE middleware"
},
"autoload": {
"psr-0": {
"Phpro\\SoapClient\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"PhproTest\\SoapClient\\": "test/"
}
},
"bin": ["bin/soap-client"],
"config": {
"sort-packages": true
}
}