-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.3 KB
/
composer.json
File metadata and controls
45 lines (45 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
{
"name": "autodoctor/vkmodule-socket",
"version": "1.5.0",
"type": "library",
"description": "PHP driver library for use with VKmodule 'Socket-N' type electronic devices.",
"homepage": "https://github.com/Igor-ad/vkmodule-socket",
"keywords": ["vkmodule", "smart-home", "remote-control", "php-driver", "library", "Client"],
"license": "MIT",
"authors": [
{
"name": "Igor",
"email": "igor@autodoctor.od.ua"
}
],
"require": {
"php": ">=8.2",
"psr/log": "^3.0",
"guzzlehttp/guzzle": "^7.9"
},
"autoload": {
"psr-4": {
"Autodoctor\\ModuleSocket\\": "src/ModuleSocket"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\Unit\\": "tests/Unit",
"Tests\\Feature\\": "tests/Feature",
"Tests\\Support\\": "tests/Support"
}
},
"require-dev": {
"phpunit/phpunit": "^11",
"friendsofphp/php-cs-fixer": "^3.82"
},
"scripts": {
"test": "phpunit -c phpunit.xml",
"coverage-html": "phpunit -c phpunit.xml --coverage-html public/coverage",
"coverage-text": "phpunit -c phpunit.xml --coverage-text"
}
}