-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
33 lines (33 loc) · 913 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
{
"name": "williamson/tplinksmartplug",
"description": "A PHP library to control and receive information from a TP-Link smartplug.",
"license": "MIT",
"keywords": ["TPLink", "PHP", "HS110", "HS100", "Timer", "SmartPlug", "Laravel"],
"authors": [
{
"name": "Jonathan Williamson",
"email": "[email protected]"
}
],
"require": {
"tightenco/collect": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Williamson\\TPLinkSmartplug\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Williamson\\TPLinkSmartplug\\Laravel\\TPLinkServiceProvider"
],
"aliases": {
"TPLink": "Williamson\\TPLinkSmartplug\\Laravel\\Facades\\TPLinkFacade"
}
}
}
}