-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.3 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "four-bytes/four-fritz-http-client-php",
"description": "Modern PHP HTTP client for FritzBox API access",
"type": "library",
"license": "MIT",
"keywords": ["fritzbox", "fritz", "avm", "nas", "api", "http", "client"],
"homepage": "https://github.com/four-bytes/four-fritz-http-client-php",
"authors": [
{
"name": "4 Bytes, Four Flames GmbH & Co. KG",
"homepage": "https://github.com/four-bytes"
}
],
"require": {
"php": "^8.1",
"psr/log": "^3.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Four\\FritzHttpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Four\\FritzHttpClient\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse",
"style": "phpcs",
"style-fix": "phpcbf"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}