-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 999 Bytes
/
Copy pathcomposer.json
File metadata and controls
27 lines (27 loc) · 999 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
{
"name": "rust-pdf/rustpdf",
"description": "Generate, edit, sign and process PDFs in PHP: PDF/A, AES-256 encryption, digital signatures (PAdES), forms, stamping, redaction, text extraction and page rendering. Docs: https://rustpdf.dev/docs/php",
"type": "library",
"license": "proprietary",
"homepage": "https://rustpdf.dev/docs/php",
"require": {
"php": ">=8.1",
"ext-ffi": "*"
},
"bin": [
"bin/rustpdf-install-lib"
],
"autoload": {
"psr-4": {
"RustPdf\\": "src/"
}
},
"scripts": {
"install-lib": "@php bin/rustpdf-install-lib"
},
"extra": {
"rustpdf": {
"note": "The native libpdf_ffi is fetched per-platform from the GitHub Release on first use, or eagerly via `composer run install-lib` / `php vendor/rust-pdf/rustpdf/bin/rustpdf-install-lib`. Set RUSTPDF_LIB to use a locally built library, or RUSTPDF_NO_DOWNLOAD=1 to forbid the fetch."
}
}
}