-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
38 lines (38 loc) · 899 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
{
"name": "aaharu/curlsoapclient",
"type": "library",
"description": "A SoapClient wrapper that uses ext-curl.",
"keywords": ["soap", "soap-client", "curl", "client", "web service"],
"license": "MIT",
"authors": [
{
"name": "aaharu",
"email": "[email protected]",
"homepage": "https://www.aaharu.com/"
}
],
"require": {
"php": ">=7.2",
"ext-soap": "*",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"Aaharu\\Soap\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^2.14"
},
"scripts": {
"test": "phpunit",
"format": "php-cs-fixer fix --rules=@PSR2 src"
},
"archive": {
"exclude": [
"tests/",
"phpunit.xml.dist"
]
}
}