-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
36 lines (36 loc) · 975 Bytes
/
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
{
"name": "goetas-webservices/wsdl-reader",
"description": "Pure PHP WSDL parser",
"keywords": ["xsd", "xml", "soap", "webservice", "wsdl"],
"license": "MIT",
"authors": [{
"name": "Asmir Mustafic",
"email": "goetas@gmail.com"
}],
"require": {
"php": "^7.1|^8.0",
"goetas-webservices/xsd-reader": "^0.3",
"symfony/event-dispatcher-contracts": "^1.1|^2.0",
"symfony/event-dispatcher": "^2.4|^3.0|^4.0|^5.0",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"jmikola/wildcard-event-dispatcher": ">=1.1.2|^2.0"
},
"autoload": {
"psr-4": {
"GoetasWebservices\\XML\\WSDLReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GoetasWebservices\\XML\\WSDLReader\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}