-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
53 lines (53 loc) · 1.29 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "neoteknic/phue",
"description": "Phue - Philips Hue PHP client - Fork by Neoteknic - extra features",
"type": "library",
"keywords": [
"phue",
"philips",
"hue",
"client"
],
"homepage": "https://github.com/neoteknic/Phue",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Michael Squires",
"email": "[email protected]",
"role": "lead"
},
{
"name": "Jens Reinemuth",
"email": "[email protected]",
"role": "developer"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"mockery/mockery": "^1.6.11",
"phpunit/phpunit": "^10.5.11 || ^11.1.1",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.53",
"ext-curl": "*"
},
"suggest": {
"ext-curl": "Allows usage of cURL transport adapter"
},
"autoload": {
"psr-0": {
"Phue": "library/"
}
},
"bin": [
"bin/phue-create-user",
"bin/phue-bridge-finder",
"bin/phue-light-finder",
"bin/phue-list-lights"
],
"scripts": {
"phpstan": "phpstan analyse library --no-progress --level=6",
"phpunit": "phpunit "
}
}