forked from vladmeh/zf3-tcpdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 766 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 766 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
{
"name": "valerialevenets/laminas-tcpdf",
"description": "A Laminas module for incorporating TCPDF support.",
"keywords": ["pdf","tcpdf", "zf3", "laminas"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "vladmeh",
"email": "vladmeh@gmail.com"
},
{
"name": "Valeriia Levenets",
"email": "valeria.levenets94@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"tecnickcom/tcpdf": "^6.4",
"laminas/laminas-mvc": "^3.2"
},
"require-dev": {
"laminas/laminas-developer-tools": "^2.1",
"squizlabs/php_codesniffer": "^2.8",
"phpunit/phpunit": "^9.3",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"autoload": {
"psr-4": {
"TCPDFModule\\": "src/"
}
}
}