forked from Daniel-KM/PHPePub
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
48 lines (48 loc) · 1.29 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
47
48
{
"name": "wallabag/phpepub",
"type": "library",
"description": "Package to create and stream e-books in the ePub 2.0 and 3.0 formats.",
"keywords": ["epub", "e-book"],
"homepage": "https://github.com/wallabag/PHPePub",
"license": "LGPL-2.1",
"minimum-stability": "stable",
"authors": [
{
"name": "A. Grandt",
"email": "[email protected]",
"homepage": "http://grandt.com",
"role": "Developer"
},
{
"name": "An, Hyeong-woo",
"email": "[email protected]",
"homepage": "https://mytory.net",
"role": "Contributor"
},
{
"name": "Daniel Berthereau",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Kevin Decherf",
"homepage": "https://kdecherf.com",
"role": "Contributor"
}
],
"require": {
"php": ">=5.3.0",
"phpzip/phpzip": "~2.0.7",
"grandt/phpresizegif": "~1.0.3",
"grandt/relativepath": "~1.0.1",
"masterminds/html5": "~2.3"
},
"autoload": {
"psr-4": {
"PHPePub\\": "src/PHPePub"
},
"classmap": [
"src/lib.uuid.php"
]
}
}