-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.52 KB
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 1.52 KB
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
{
"name": "dskripchenko/php-pdf",
"description": "MIT alternative to mpdf (GPL) and FPDI: pure-PHP PDF toolkit — generate (HTML/CSS input, fluent builders, low-level emission, 16 barcode formats, 8 chart types, TTF embedding, AcroForm, PKCS#7 signing, PDF/A and PDF/X), plus read and merge existing PDFs (append/reorder pages, stamp overlays, FPDI-style import, encrypted input).",
"type": "library",
"license": "MIT",
"keywords": ["pdf", "html-to-pdf", "pdf-writer", "pdf-reader", "pdf-merge", "mpdf-alternative", "fpdi-alternative", "fpdi", "gpl-free", "barcode", "qr-code", "acroform", "pdf-a", "pdf-x", "tagged-pdf", "pkcs7", "ttf-embed"],
"homepage": "https://github.com/dskripchenko/php-pdf",
"authors": [
{
"name": "Denis Skripchenko",
"email": "denskrp90@gmail.com"
}
],
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"ext-zlib": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "2.1.54"
},
"autoload": {
"psr-4": {
"Dskripchenko\\PhpPdf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dskripchenko\\PhpPdf\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"stan": "phpstan analyse --memory-limit=1G",
"bench": "bash scripts/bench/bench.sh"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}