-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 1.02 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
{
"name": "daandesmedt/phpghostscript",
"description": "A PHP wrapper for Ghostscript (An interpreter for the PostScript language and for PDF). Export PDF / PS to PDF or various image types (jpeg / png). Easy to use and OOP interfaced.",
"type": "library",
"license": "MIT",
"keywords": ["HTML","ghostscript","wrapper","pdf","php","jpg","png","postscript"],
"authors": [
{
"name": "Daan De Smedt",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"daandesmedt\\PHPGhostscript\\": "src/PHPGhostscript"
}
},
"autoload-dev": {
"psr-4": {
"daandesmedt\\Tests\\PHPGhostscript\\": "tests/PHPGhostscript"
}
},
"require-dev": {
"phpunit/phpunit": "^8.3"
},
"require": {
"php": ">= 7.0.0",
"mikehaertl/php-shellcommand": "^1.2"
},
"scripts": {
"test": "vendor/bin/phpunit --verbose --configuration phpunit.xml"
}
}