-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "owen-oj/laravel-getid3",
"description": "This package is a wrapper around james-heinrich/getid3 to extract various information from media files",
"license": "MIT",
"authors": [
{
"name": "Owen Jubilant",
"email": "[email protected]",
"homepage": "https://github.com/Owen-oj"
}
],
"homepage": "https://github.com/owen-oj/laravel-getid3",
"keywords": [
"Laravel",
"laravel-getid3",
"getID3"
],
"require": {
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"james-heinrich/getid3": "^1.9"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Owenoj\\LaravelGetId3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Owenoj\\LaravelGetId3\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Owenoj\\LaravelGetId3\\GetId3ServiceProvider"
]
}
}
}