forked from raykolbe/DOMPDFModule
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.39 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
{
"name": "netiul/dompdf-module",
"type": "library",
"description": "A Laminas module for incorporating DOMPDF support - Originally by Raymond Kolbe",
"keywords": ["pdf","dompdf", "zf2", "laminas"],
"license": "MIT",
"authors": [
{
"name": "Raymond J. Kolbe",
"email": "rkolbe@gmail.com"
}
],
"replace" : {
"dino/dompdf-module": "0.*"
},
"require": {
"php": "~7.4.1 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"laminas/laminas-servicemanager": "^3.4.1",
"laminas/laminas-modulemanager": "^2.10.1",
"laminas/laminas-eventmanager": "^3.3.0",
"laminas/laminas-view": "^2.13.0",
"dompdf/dompdf": "^v1.2.0 || ^v2.0.0",
"mindplay/composer-locator": "^2.1.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5.0",
"laminas/laminas-http": "^2.15.0",
"laminas/laminas-mvc": "^3.2.0",
"squizlabs/php_codesniffer": "^3.5.0",
"slevomat/coding-standard": "^6.4.0"
},
"autoload": {
"psr-4": {
"DOMPDFModule\\": "src/DOMPDFModule"
}
},
"autoload-dev": {
"psr-4": {
"DOMPDFModuleTest\\": "tests/DOMPDFModuleTest"
}
},
"config": {
"allow-plugins": {
"mindplay/composer-locator": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}