forked from mytory/PHPePub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1013 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
{
"name": "mytory/phpepub",
"type": "library",
"description": "Package to create and stream e-books in the ePub 2.0 and 3.0 formats. Forked from Grandt",
"keywords": ["epub", "e-book"],
"homepage": "https://github.com/mytory/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"
}
],
"require": {
"php": ">=5.3.0",
"phpzip/phpzip": "~2.0.7",
"grandt/phpresizegif": "~1.0.3",
"grandt/relativepath": "~1.0.1"
},
"autoload": {
"psr-4": {
"PHPePub\\": "src/PHPePub"
},
"classmap": [
"src/lib.uuid.php"
]
}
}