forked from goetas-webservices/soap-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (49 loc) · 1.3 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": "tomasz-kusy/soap-client",
"authors": [
{
"name": "Asmir Mustafic",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^7.1|^8.0",
"psr/http-message": "^1.0",
"php-http/httplug": "^1.0|^2.0",
"php-http/discovery": "^1.0",
"php-http/message-factory": "^1.0.2",
"symfony/dependency-injection": "^2.4|^3.0|^4.0|^5.0",
"doctrine/instantiator": "^1.0.3",
"goetas-webservices/xsd2php-runtime": "^0.2.2",
"jms/serializer": "^1.6|^2.0|^3.0",
"symfony/event-dispatcher": "^4.3|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0",
"goetas-webservices/wsdl2php": "^0.4",
"goetas-webservices/wsdl-reader": "^0.3.1",
"php-http/guzzle6-adapter": "^1.0|^2.0",
"php-http/message": "^1.0"
},
"autoload": {
"psr-4": {
"GoetasWebservices\\SoapServices\\SoapClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GoetasWebservices\\SoapServices\\SoapClient\\Tests\\": "tests",
"GoetasWebservices\\Xsd\\XsdToPhp\\Tests\\": "vendor/goetas-webservices/xsd2php/tests",
"GoetasWebservices\\WsdlToPhp\\Tests\\": "vendor/goetas-webservices/wsdl2php/tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
},
"bin": [
"bin/soap-client"
]
}