forked from ricbra/RicbraDiscogsBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
42 lines (42 loc) · 1.19 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/discogs-bundle",
"description": "Bundle around the Discogs API client for Symfony 5 or Symfony 6",
"type": "symfony-bundle",
"keywords": ["discogs", "api"],
"homepage": "https://github.com/calliostro/CalliostroDiscogsBundle",
"license": "MIT",
"authors": [
{
"name": "Richard van den Brand",
"email": "[email protected]"
},
{
"name": "calliostro",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"calliostro/php-discogs-api": "^2.0.2",
"symfony/config": "^5.0 || ^6.0",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/http-kernel": "^5.0 || ^6.0",
"symfony/security-bundle": "^5.0 || ^6.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0 || ^6.0"
},
"autoload": {
"psr-4": {
"Calliostro\\DiscogsBundle\\": "src\\"
}
},
"autoload-dev": {
"psr-4": {
"Calliostro\\DiscogsBundle\\Tests\\": "tests\\"
}
},
"suggest": {
"hwi/HWIOAuthBundle": "Enable OAuth support using HWIOAuthBundle"
}
}