-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
59 lines (59 loc) · 1.4 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
56
57
58
59
{
"name": "psilocyberunner/acoustid",
"description": "PHP wrapper for audio fingerprint search service at acoustid.org",
"type": "library",
"keywords": [
"acoustid",
"library",
"php",
"api"
],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Peter Petrov",
"email": "petrovgm@gmail.com"
}
],
"require": {
"guzzlehttp/guzzle": "~6.0",
"ext-curl": "*",
"php": "^7.3",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"phpstan/phpstan": "^0.11.12",
"squizlabs/php_codesniffer": "3.*",
"symfony/var-dumper": "*",
"filp/whoops": "^2.7",
"james-heinrich/getid3": "^1.9",
"vlucas/phpdotenv": "^4.1"
},
"autoload": {
"classmap": [
],
"psr-4": {
"AcoustId\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"component-dir": "public/packages",
"vendor-dir": "vendor"
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse src --level max",
"phpunit": "./vendor/bin/phpunit -c ./phpunit.xml"
}
}