-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.39 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
54
55
56
57
58
59
60
{
"name": "steffjenl/phue",
"description": "Phue - Philips Hue PHP client for Laravel",
"type": "library",
"keywords": [
"phue",
"philips",
"hue",
"client",
"laravel"
],
"homepage": "http://github.com/steffjenl/Phue",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Michael Squires",
"email": "[email protected]",
"role": "lead"
},
{
"name": "Stèphan Eizinga",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/support": ">=5.4.0",
"illuminate/console": ">=5.4.0"
},
"require-dev": {
"mockery/mockery": "0.8.0",
"phpunit/PHPUnit": "3.7.25",
"squizlabs/php_codesniffer": "1.4.6"
},
"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"
],
"extra": {
"laravel": {
"providers": [
"Phue\\PhueServiceProvider"
],
"aliases": {
"Phue": "Phue\\Facade"
}
}
}
}