-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.5 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.5 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
{
"name": "dutchie027/govee-api-v2",
"description": "API Using Govee's newer OpenAPI Spec",
"type": "library",
"keywords": ["php", "home automation", "govee", "lights", "plugs", "API", "thermostats", "control"],
"license": "MIT",
"require": {
"monolog/monolog": "^3.8",
"guzzlehttp/guzzle": "^7.9",
"vlucas/phpdotenv": "^5.6",
"oittaa/uuid": "^1.10",
"php": "^8.0"
},
"autoload": {
"psr-4": {
"dutchie027\\GoveeApiV2\\": "src/"
}
},
"authors": [
{
"name": "Justin Rodino",
"email": "justin@rodino.dev"
}
],
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/phpunit",
"stan": "./vendor/bin/phpstan --no-progress",
"insight": "./vendor/bin/phpinsights",
"runall": [
"@fix",
"@test",
"@stan",
"@insight"
]
},
"scripts-descriptions": {
"test": "Runs phpunit tests",
"fix": "Runs PHP-CS Fixer",
"stan": "Runs phpstan to check standards",
"runall": "Runs all tests (fixer, phpunit, phpstan, psalm)"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.66",
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "^2.0",
"nunomaduro/phpinsights": "^2.12"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}