-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.68 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
57
58
59
60
61
62
63
{
"name": "cuyz/webz",
"description": "Library that aims to abstract calls to different WebServices (in HTTP or SOAP)",
"keywords": [
"webservice",
"http",
"soap"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/CuyZ/WebZ",
"authors": [
{
"name": "Nathan Boiron",
"email": "[email protected]",
"homepage": "https://github.com/Mopolo",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 | ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3 | ^7.0",
"guzzlehttp/promises": "^1.0",
"guzzlehttp/psr7": "^1.4",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"psr/simple-cache": "^1.0"
},
"autoload": {
"psr-4": {
"CuyZ\\WebZ\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CuyZ\\WebZ\\Tests\\": "tests"
}
},
"require-dev": {
"ext-soap": "*",
"laminas/laminas-soap": "^2.9",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "0.12.56",
"phpstan/phpstan-strict-rules": "0.12.5",
"phpunit/phpunit": "^9.4",
"psr/http-server-handler": "^1.0",
"react/event-loop": "^1.1.1",
"react/http": "^1.1.0",
"symfony/cache": "^5.1",
"symfony/event-dispatcher": "^5.1",
"vimeo/psalm": "^4.0"
},
"suggest": {
"ext-soap": "Required for SOAP WebServices"
},
"config": {
"sort-packages": true
}
}