-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
42 lines (42 loc) · 937 Bytes
/
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
{
"name": "sqmk/phue",
"description": "Phue - Philips Hue PHP client",
"type": "library",
"keywords": [
"phue",
"philips",
"hue",
"client"
],
"homepage": "http://github.com/sqmk/Phue",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Michael Squires",
"email": "[email protected]",
"role": "lead"
}
],
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"mockery/mockery": "1.0.0",
"phpunit/phpunit": "5.7.25",
"squizlabs/php_codesniffer": "3.1.1"
},
"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"
]
}