-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
39 lines (39 loc) · 1017 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
37
38
39
{
"name": "nguyenanhung/nusoap",
"type": "library",
"description": "My nuSOAP Library, fix code for for PHP 8.2 <=> 5.4",
"keywords": [
"soap",
"nusoap"
],
"homepage": "https://github.com/nguyenanhung/nusoap",
"license": "LGPL-2.1-only",
"authors": [
{
"name": "Dietrich Ayala",
"homepage": "https://sourceforge.net/u/dietricha/profile/"
},
{
"name": "Scott Nichol",
"homepage": "https://sourceforge.net/u/snichol/profile/"
},
{
"name": "Nguyen An Hung",
"email": "[email protected]",
"homepage": "https://nguyenanhung.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.4"
},
"autoload": {
"psr-4": {
"nguyenanhung\\MyNuSOAP\\": "src/",
"nguyenanhung\\MyFixNuSOAP\\": "fixed/"
},
"files": [
"helpers/functions.php"
]
}
}