forked from raykolbe/DOMPDFModule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 865 Bytes
/
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
{
"name": "avs/dompdf-module",
"type": "library",
"description": "A Zend Framework 2 module for incorporating DOMPDF support.",
"keywords": ["pdf","dompdf", "zf2"],
"homepage": "http://raymondkolbe.com",
"license": "MIT",
"authors": [
{
"name": "Raymond J. Kolbe",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"dompdf/dompdf": "~0.8.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.27",
"codeclimate/php-test-reporter": "^0.3.2",
"fabpot/php-cs-fixer": "^1.12",
"squizlabs/php_codesniffer": "^2.7",
"phpmd/phpmd": "^2.4"
},
"autoload": {
"psr-0": {
"DOMPDFModule": "src/"
}
},
"autoload-dev": {
"psr-0": {
"DOMPDFModuleTest": "tests/"
}
}
}