-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 848 Bytes
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 848 Bytes
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
{
"name": "ottosmops/pdftothumb",
"description": "Convert PDF to an image",
"keywords": [
"anton",
"ottosmops",
"pdftothumb",
"pdftoppm",
"pdf"
],
"authors": [
{
"name": "ak",
"email": "kraenzle@k-r.ch",
"homepage": "https://wwwk-r.ch"
}
],
"homepage": "https://github.com/ottosmops/pdftothumb",
"license": "MIT",
"require": {
"php": ">=7.2.0",
"symfony/process": ">=5.1"
},
"require-dev": {
"phpunit/phpunit": "~8.5"
},
"autoload": {
"psr-4": {
"Ottosmops\\Pdftothumb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ottosmops\\Pdftothumb\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}