-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
{
"name": "stevenfoncken/multitool-for-spotify-php",
"description": "PHP command-line application that performs various tasks to enhance your Spotify experience",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/stevenfoncken/multitool-for-spotify-php",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "stevenfoncken",
"email": "dev@stevenfoncken.de",
"homepage": "https://www.stevenfoncken.de",
"role": "Developer"
}
],
"keywords": [
"spotify", "php", "commandline"
],
"support": {
"issues": "https://github.com/stevenfoncken/multitool-for-spotify-php/issues",
"source": "https://github.com/stevenfoncken/multitool-for-spotify-php",
"security": "https://github.com/stevenfoncken/multitool-for-spotify-php/blob/master/.github/SECURITY.md"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
}
},
"autoload": {
"psr-4": {
"StevenFoncken\\MultiToolForSpotify\\": "src/"
}
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-zlib": "*",
"ext-gd": "*",
"intervention/image": "^3.2",
"jwilsson/spotify-web-api-php": "^6.0",
"monolog/monolog": "^3.5",
"parsecsv/php-parsecsv": "^1.3",
"symfony/console": "^7.0",
"symfony/lock": "^7.0",
"symfony/mailer": "^7.0",
"symfony/validator": "^7.0",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
}
}