-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (33 loc) · 856 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
{
"name": "jump24/cubesensors",
"description": "CubeSensors API wrapper to help users retrieve data easier.",
"keywords" : ["cubesensors", "API"],
"license": "MIT",
"version": "1.0.0",
"authors": [
{
"name": "Daniel Newns",
"email": "[email protected]",
"homepage" : "http://www.jump24.co.uk",
"role" : "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "6.2.0",
"guzzlehttp/oauth-subscriber": "0.3.0",
"ohmy/auth": "0.0.6",
"nesbot/carbon": "1.13.0",
"illuminate/support": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "4.4.5",
"mockery/mockery": "0.9.4"
},
"autoload": {
"psr-4" : {
"Jump24\\CubeSensors\\": "src"
}
}
}