-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 985 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 985 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
{
"name": "ordinary9843/ghostscript",
"description": "Use Ghostscript to merge / split all PDF files or guess and convert PDF file version, and transform PDF into images. Fix FPDI error by Ghostscript: This document PDF probably uses a compression technique which is not supported by the free parser shipped with FPDI.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jerry Chen",
"email": "ordinary9843@gmail.com"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": ">=7.0",
"vlucas/phpdotenv": ">=5.0"
},
"autoload": {
"psr-4": {
"Ordinary9843\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"audit": {
"ignore": ["PKSA-5jz8-6tcw-pbk4", "PKSA-z3gr-8qht-p93v"]
}
},
"scripts": {
"test": "php copy-phpunit-xml.php && php vendor/bin/phpunit --coverage-clover ./coverage.xml --coverage-html ./report"
}
}