forked from psliwa/PHPPdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.2 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.2 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": "jobcloud/psliwa-php-pdf",
"description": "Pdf and graphic files generator library for PHP.",
"keywords": [
"PDF",
"PHPPdf"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Piotr Śliwa",
"homepage": "https://ohey.pl",
"email": "peter.pl7@gmail.com"
}
],
"repositories": [
{"type": "vcs", "no-api": true, "url": "git@github.com:jobcloud/laminas-memory.git"},
{"type": "vcs", "no-api": true, "url": "git@github.com:jobcloud/zendpdf.git"}
],
"require": {
"php": "^8.4",
"ext-iconv": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-xmlreader": "*",
"jobcloud/zendpdf": "^4.0.1"
},
"require-dev": {
"imagine/imagine": ">=0.2.0,<0.6.0",
"phpunit/phpunit": "^8.5.48"
},
"prefer-stable": true,
"minimum-stability": "dev",
"suggest": {
"imagine/imagine": "If you want to use image generating (required version: >=v0.2.6)"
},
"autoload": {
"psr-0": {
"PHPPdf": "lib/",
"Imagine": "lib/"
}
}
}