-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 904 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
{
"name": "plutuss/getid3-laravel",
"description": "A wrapper around james-heinrich/getid3 to extract various information from media files.",
"keywords": [
"laravel",
"getid3",
"getid3-laravel",
"audio",
"mp4",
"mp3",
"video"
],
"minimum-stability": "stable",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "plutuss",
"email": "dima92konovalenko@gmail.com",
"homepage": "https://github.com/plutuss"
}
],
"require": {
"james-heinrich/getid3": "^v2.0.0-beta6",
"ext-fileinfo": "*"
},
"autoload": {
"psr-4": {
"Plutuss\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Plutuss\\Providers\\GetId3ServiceProvider"
]
}
}
}