-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1023 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": "theiconic/ntlm-soap",
"description": "PHP Library for consuming SOAP web services using NTLM authentication",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "THE ICONIC Engineering Team",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-soap": "*",
"guzzlehttp/guzzle": "6.5.8",
"symfony/options-resolver": "^4.1|^5.0",
"symfony/filesystem": "^4.1|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"mockery/mockery": "~1.0",
"spatie/phpunit-watcher": "^1.5",
"php-coveralls/php-coveralls": "^2.2"
},
"autoload": {
"psr-4": {
"TheIconic\\NtlmSoap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Unit\\TheIconic\\NtlmSoap\\": "tests/unit"
}
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
}
}