-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
45 lines (45 loc) · 898 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
39
40
41
42
43
44
45
{
"name": "mrfeathers/php-fpcalc",
"description": "PHP wrapper for command-line fingerprint generator - fpcalc",
"type": "library",
"keywords": [
"chromaprint",
"fpcalc",
"acoustid",
"music",
"fingerprint",
"php",
"library"
],
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Olga Nikolaeva",
"email": "featherman101@gmail.com",
"homepage": "https://www.linkedin.com/in/olganiko",
"role": "developer"
}
],
"require-dev": {
"phpunit/phpunit": "^6.0",
"mockery/mockery": "^1.0"
},
"require": {
"php": ">=7.1",
"symfony/process": "^4.0"
},
"suggest": {
"mrfeathers/acoustid": "Object Oriented PHP Wrapper for acoustid.org API"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"Fpcalc\\": "src/"
}
}
}