forked from AnssiAhola/php-discogs-api
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
42 lines (42 loc) · 1.13 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
{
"name": "calliostro/php-discogs-api",
"description": "The Discogs API makes it easy for developers to communicate with the Discogs platform",
"type": "library",
"keywords": ["discogs", "api"],
"license": "MIT",
"require": {
"php": ">=7.3",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/guzzle-services": "^1.2|^1.3|^1.4",
"guzzlehttp/oauth-subscriber": "^0.4|^0.5|^0.6"
},
"require-dev": {
"phpunit/phpunit": "^8.5.23|^9.0|^10.0",
"ext-json": "*"
},
"authors": [
{
"name": "Richard van den Brand",
"email": "[email protected]"
},
{
"name": "calliostro",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "Discogs": "lib/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"suggest": {
"calliostro/discogs-bundle": "For integrating Discogs into Symfony",
"ricbra/discogs-bundle": "For integrating Discogs into Symfony 2"
},
"scripts":{
"test": "phpunit tests"
}
}