forked from samvdb/php-musiccast-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.28 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
{
"name": "samvdb/php-musiccast-api",
"description": "PHP Wrapper for Yamaha MusicCast API",
"type": "library",
"keywords": ["yamaha", "musiccast", "api"],
"license": "MIT",
"authors": [
{
"name": "Sam Van der Borght",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5 || ^7.0",
"psr/http-message": "^1.0",
"psr/cache": "^1.0",
"php-http/httplug": "^1.1",
"php-http/discovery": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^1.3",
"php-http/cache-plugin": "^1.2",
"symfony/yaml": "^3.2",
"myclabs/php-enum": "^1.5"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.7",
"phpunit/phpunit": "^4.0 || ^5.5",
"phpunit/php-code-coverage": "^4",
"php-http/guzzle6-adapter": "^1.0",
"guzzlehttp/psr7": "^1.2",
"phpro/grumphp": "^0.11.1",
"nikic/php-parser": "^3.0",
"friendsofphp/php-cs-fixer": "^2.0"
},
"autoload": {
"psr-4": { "MusicCast\\": "lib/MusicCast/" }
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}