-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1020 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "prhost/epub-php",
"description": "Epub generator PHP",
"keywords": [
"php",
"epub-php"
],
"homepage": "https://github.com/prhost/epub-php",
"license": "MIT",
"authors": [
{
"name": "Kallef Alexandre",
"email": "kallef@orbitaldev.com.br",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-zip": "*",
"nelexa/zip": "^4.0",
"ramsey/uuid": "^4.4|^3.9",
"symfony/filesystem": "^6.0"
},
"require-dev": {
"fakerphp/faker": "^1.20",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Prhost\\Epub\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Prhost\\Epub\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}