-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
56 lines (52 loc) · 1.42 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
{
"name": "goetas-webservices/soap-server",
"authors": [
{
"name": "Asmir Mustafic",
"email": "[email protected]"
}
],
"description": "Pure PHP implementation of SOAP 1.1 and 1.2 server",
"license": "MIT",
"require": {
"php": "^7.2",
"rybakit/arguments-resolver": "^0.5.0",
"jms/serializer": "^1.2|^2.0|^3.0",
"psr/log": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message-implementation": "^1.0",
"php-http/discovery": "^1.13",
"goetas-webservices/soap-common": "^0.2",
"symfony/dependency-injection": "^3.3|^4.0|^5.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.3",
"phpunit/phpunit": "^7.0|^8.0",
"goetas-webservices/wsdl2php": "^0.5.1",
"laminas/laminas-diactoros": "^2.4",
"doctrine/coding-standard": "^8.1"
},
"autoload": {
"psr-4": {
"GoetasWebservices\\SoapServices\\SoapServer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GoetasWebservices\\SoapServices\\SoapServer\\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.1-dev"
}
},
"bin": [
"bin/soap-server"
]
}