forked from php-soap/ext-soap-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 890 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": "php-soap/ext-soap-engine",
"description": "An ext-soap engine implementation",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Soap\\ExtSoapEngine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoapTest\\ExtSoapEngine\\": "tests/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"ext-soap": "*",
"ext-dom": "*",
"azjezz/psl": "^2.1",
"php-soap/engine": "^1.3|^2.0",
"php-soap/wsdl": "^1.3",
"symfony/options-resolver": "^5.4 || ^6.0"
},
"require-dev": {
"php-soap/engine-integration-tests": "^1.4",
"php-soap/xml": "^1.4",
"phpunit/phpunit": "^10.0.19"
}
}