-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.77 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.77 KB
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
64
65
66
67
68
69
{
"name": "four-bytes/four-webdav-client-php",
"description": "A modern PHP WebDAV client library using PSR-18",
"type": "library",
"license": "MIT",
"keywords": [
"webdav",
"http",
"client",
"php",
"psr-18"
],
"authors": [
{
"name": "4 Bytes",
"email": "info@4bytes.de"
}
],
"homepage": "https://github.com/four-bytes/four-webdav-client",
"support": {
"issues": "https://github.com/four-bytes/four-webdav-client/issues",
"source": "https://github.com/four-bytes/four-webdav-client"
},
"require": {
"php": "^8.1",
"four-bytes/four-http-client": "^4.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr/log": "^2.0|^3.0",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^2.0",
"php-http/mock-client": "^1.6",
"nyholm/psr7": "^1.8"
},
"suggest": {
"guzzlehttp/guzzle": "Inject as PSR-18 client for streaming, async, and progress callback support"
},
"autoload": {
"psr-4": {
"Four\\WebDav\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Four\\WebDav\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/four-bytes/four-http-client.git"
}
],
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse src tests --level=6"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}