forked from meng-tian/async-soap-guzzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 958 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
{
"name": "snowio/async-soap-guzzle",
"description": "An asynchronous SOAP client build on top of Guzzle.",
"keywords": ["SOAP", "asynchronous", "Guzzle"],
"license": "MIT",
"authors": [
{
"name": "Meng Tian",
"email": "tianmeng94@hotmail.com"
}
],
"repositories": [
{"type": "composer", "url": "https://repo.packagist.com/snowio/"},
{"packagist.org": false},
{"type": "git", "url": "https://github.com/snowio/soap-http-binding.git"},
{"type": "git", "url": "https://github.com/snowio/php-async-soap.git"}
],
"require": {
"php": ">=5.5.0",
"snowio/php-async-soap": "~1.0",
"snowio/soap-http-binding": "~0.2.0",
"guzzlehttp/guzzle": "^6.1",
"psr/log": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"autoload": {
"psr-4": {"Meng\\AsyncSoap\\Guzzle\\": "src/"}
}
}