forked from AnssiAhola/php-discogs-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.11 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
{
"name": "w3spi5/php-discogs-api",
"description": "The forked and updated as of end of 2024, Discogs API, that 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 || ^8.0",
"guzzlehttp/guzzle-services": "^1.2|^1.3|^1.4",
"guzzlehttp/oauth-subscriber": ">=0.4 <1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.23|^9.0|^10.0",
"ext-json": "*"
},
"authors": [
{
"name": "Wespify Solutions",
"email": "naetheria@wespify.com"
}
],
"autoload": {
"psr-4": {
"Wespify\\Discogs\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "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"
}
}