forked from chrisdawson/MusicBrainz
-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
37 lines (37 loc) · 1.05 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
{
"name": "mikealmond/musicbrainz",
"type": "library",
"description": "A PHP library for accessing the MusicBrainz API",
"keywords": ["musicbrainz", "library", "php", "api"],
"homepage": "https://github.com/mikealmond/musicbrainz",
"license": "MIT",
"authors": [
{
"name": "Mike Almond",
"email": "mike.almond@gmail.com",
"homepage": "http://mikealmond.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.8"
},
"require-dev": {
"guzzle/guzzle": "~3.8.0",
"phpunit/phpunit": "3.7.*"
},
"suggest": {
"guzzle/guzzle": "Allows you to use the GuzzleHttpAdapter. You must install one of the supported adapters.",
"rmccue/requests": "Allows you to use the RequestsHttpAdapter. You must install one of the supported adapters."
},
"autoload": {
"psr-0": {
"MusicBrainz": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}