-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.33 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
{
"name": "osteel/kobwise",
"description": "Convert your Kobo annotations to Readwise highlights",
"keywords": [
"cli",
"kobo",
"readwise",
"annotations",
"highlights",
"php",
"composer"
],
"homepage": "https://github.com/osteel/kobwise",
"type": "cli",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Yannick Chenot",
"email": "[email protected]",
"homepage": "https://github.com/osteel",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/osteel/kobwise/issues",
"source": "https://github.com/osteel/kobwise"
},
"autoload": {
"psr-4": {
"Osteel\\Kobwise\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Osteel\\Kobwise\\Tests\\": "tests"
}
},
"require": {
"php": "^7.4|^8.0",
"symfony/console": "^5.1|^6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/kobwise"
]
}