-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
46 lines (46 loc) · 1.42 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
{
"name": "duncan3dc/meta-audio",
"type": "library",
"description": "A library to read and write metadata tags to audio files",
"keywords": ["mpg", "id3", "id3v1", "id3v2", "apetag", "apev1", "apev2", "audio", "metadata"],
"homepage": "https://github.com/duncan3dc/meta-audio",
"license": "Apache-2.0",
"authors": [{
"name": "Craig Duncan",
"email": "[email protected]",
"homepage": "https://github.com/duncan3dc",
"role": "Developer"
}],
"require": {
"duncan3dc/bom-string": "^1.0",
"php": "^7.2 || ^8.0"
},
"require-dev": {
"duncan3dc/object-intruder": "^0.3 || ^1.0",
"duncan3dc/php-ini": "^1.0",
"maglnet/composer-require-checker": "^2.0 || ^4.0",
"mockery/mockery": "^1.3.6",
"squizlabs/php_codesniffer": "^3.5.8",
"phpunit/phpunit": "^8.5.31"
},
"autoload": {
"psr-4": {"duncan3dc\\MetaAudio\\": "src/"}
},
"autoload-dev": {
"files": ["vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"],
"psr-4": {"duncan3dc\\MetaAudioTests\\": "tests/"}
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/phpcs",
"vendor/bin/composer-require-checker",
"@composer validate --strict"
]
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}