forked from wallabag/PHPePub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.57 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "hi-folks/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/Hi-Folks/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"
},
{
"name": "Roberto Butti",
"homepage": "https://hi-folks.dev",
"role": "Contributor"
}
],
"require": {
"php": ">=8.1.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"
]
},
"require-dev": {
"rector/rector": "^0.18.13",
"laravel/pint": "^1.13"
},
"scripts": {
"format": "pint"
}
}