-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 755 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 755 Bytes
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
{
"name": "wapmorgan/media-file",
"description": "A unified reader of metadata from audio & video files",
"license": "MIT",
"keywords": ["wav", "flac", "aac", "ogg", "mp3", "amr", "avi", "wma", "wmv", "mp4"],
"autoload": {
"psr-4": {
"wapmorgan\\MediaFile\\": "src/"
}
},
"require": {
"php": ">=5.5",
"bluemoehre/flac-php": "1.0.2",
"wapmorgan/mp3info": "~0.0",
"wapmorgan/binary-stream": "~0.4.0",
"wapmorgan/file-type-detector": "^1.0.2",
"boyhagemann/wave": "dev-master"
},
"suggest": {
"boyhagemann/wave": "Wav support"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"james-heinrich/getid3": "^1.9"
}
}