forked from pinxi/getid3
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
39 lines (39 loc) · 1.24 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
{
"name": "phansys/getid3",
"description": "This fork of GetId3 library updates to PSR-2 / PSR-4 CS, adds namespaces and makes it installable by composer.",
"keywords": ["getid3", "tags", "metadata"],
"type": "library",
"license": "GPL",
"homepage": "http://www.getid3.org",
"authors": [
{
"name": "James Heinrich",
"homepage": "http://www.getid3.org",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": ">=4.8,<5.4.3"
},
"suggest": {
"ext-rar": "RAR extension is required for RAR archive module.",
"ext-exif": "EXIF extension is required for graphic modules.",
"ext-mysqli": "MySQLi extension is required in order to use MySQL database as cache storage.",
"ext-sqlite": "SQLite extension is required in order to use SQLite database as cache storage.",
"ext-dba": "DBA extension is required in order to use DBA database as cache storage."
},
"conflict": {
"james-heinrich/getid3": "*"
},
"autoload": {
"psr-4": { "GetId3\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}