forked from hanneskod/libmergepdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.03 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
{
"name": "iio/libmergepdf",
"description": "Library for merging multiple PDFs",
"keywords": ["pdf", "merge"],
"homepage": "https://github.com/hanneskod/libmergepdf",
"type": "library",
"license": "WTFPL",
"authors": [
{
"name": "Hannes Forsgård",
"email": "[email protected]"
}
],
"scripts": {
"test-all": "vendor/bin/phpunit && vendor/bin/behat",
"test-behat": "vendor/bin/behat",
"test-phpunit": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"iio\\libmergepdf\\": "src/"
},
"classmap": [
"tcpdi/"
]
},
"require": {
"php": "^8.3",
"tecnickcom/tcpdf": "^6.2.22",
"setasign/fpdi": "^2"
},
"conflict": {
"setasign/fpdf": "*",
"rafikhaceb/tcpdi": "*"
},
"require-dev": {
"phpunit/phpunit": "^8",
"smalot/pdfparser": "2.8.0",
"phpspec/prophecy": "^1.18",
"behat/behat": "^3.14"
}
}