-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
29 lines (29 loc) · 827 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
{
"name": "clue/soap-react",
"description": "Simple, async SOAP webservice client library, built on top of ReactPHP",
"keywords": ["SOAP", "SoapClient", "WebService", "WSDL", "ReactPHP"],
"homepage": "https://github.com/clue/reactphp-soap",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@clue.engineering"
}
],
"autoload": {
"psr-4": { "Clue\\React\\Soap\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Soap\\": "tests/" }
},
"require": {
"php": ">=7.1",
"react/http": "^1.5",
"react/promise": "^2.1 || ^1.2",
"ext-soap": "*"
},
"require-dev": {
"clue/block-react": "^1.0",
"phpunit/phpunit": "^9.3 || ^7.5"
}
}