-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (36 loc) · 920 Bytes
/
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
{
"name": "superhyperinstantfuturetime/trackshift",
"description": "A music royalties data aggregator",
"require": {
"php": ">=8.2",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-zip": "*",
"superhyperinstantfuturetime/spotify-api": "dev-master",
"phpgt/webengine": "dev-master",
"authwave/php-client": "2022.x-dev",
"openspout/openspout": "v4.22.0",
"league/commonmark": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"phpstan/phpstan": "^1.10",
"behat/behat": "^3.11",
"friends-of-behat/mink-extension": "^2.7",
"behat/mink-goutte-driver": "^2.0",
"phpmd/phpmd": "^2.13",
"pdepend/pdepend": "dev-master",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"SHIFT\\TrackShift\\": "./class"
}
},
"autoload-dev": {
"psr-4": {
"SHIFT\\TrackShift\\Test\\": "./test/phpunit",
"SHIFT\\TrackShift\\BehatContext\\": "./test/behat/Context"
}
}
}