-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·59 lines (58 loc) · 1.51 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
{
"name": "hametuha/hamepub",
"description": "PHP Library to handle ePub 3.0",
"type": "library",
"keywords": [
"WordPress",
"ePub"
],
"homepage": "https://github.com/hametuha/hamepub",
"license": "MIT",
"authors": [
{
"name": "Takahashi Fumiki",
"email": "takahashi.fumiki@hametuha.co.jp"
}
],
"scripts": {
"test": "phpunit",
"lint": "phpcs --standard=phpcs.ruleset.xml $(find ./src -name '*.php')",
"fix": "phpcbf --standard=phpcs.ruleset.xml $(find ./src -name '*.php')",
"compile": [
"rm -rf ./tests/tmp/hamepub",
"mkdir -p ./tests/tmp/hamepub",
"./bin/hamepub generate tmp=tests/tmp/hamepub"
]
},
"bin": [
"bin/hamepub"
],
"require": {
"php": ">=7.2",
"ext-dom": "*",
"ext-json": "*",
"masterminds/html5": "2.*",
"minicli/minicli": ">=2.0"
},
"require-dev": {
"phpunit/phpunit": "^6|^7|^8",
"squizlabs/php_codesniffer": "^3.7",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-0": {
"Hametuha\\HamePub": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Hametuha\\HamePub\\Test": "tests/src"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}