-
-
Notifications
You must be signed in to change notification settings - Fork 358
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 907 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 907 Bytes
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
{
"name": "econea/nusoap",
"type": "library",
"description": "Fixed NuSOAP for PHP 5.6 - 8.5",
"keywords": ["soap", "nusoap", "php", "http", "xml", "transport", "client"],
"license": "LGPL-2.1-or-later",
"homepage": "https://github.com/contributte/nusoap",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": ">=8.2",
"ext-xml": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-zlib": "*"
},
"require-dev": {
"contributte/qa": "^0.4",
"contributte/tester": "^0.3",
"contributte/phpstan": "^0.2"
},
"autoload": {
"classmap": ["src/"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "0.10.x-dev"
}
}
}