-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 913 Bytes
/
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
43
44
45
46
{
"name": "machinateur/php-qpdf-ffi",
"description": "A really simple PHP integration for qpdf leveraging its JSON job file functionality with PHP-FFI to C.",
"keywords": [
"transform",
"pdf",
"qpdf",
"php-ffi"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "machinateur",
"email": "hello@machinateur.dev",
"homepage": "https://machinateur.dev"
}
],
"autoload": {
"files": [
"lib_qpdf.php"
]
},
"autoload-dev": {
"psr-4": {
"Machinateur\\Qpdf\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-ffi": "*",
"ext-json": "*"
},
"require-dev": {
"machinateur/imagickompare": "^1.0",
"phpunit/phpunit": "^11.4",
"symfony/process": "^7.1"
},
"scripts": {
"tests": "./bin/phpunit"
},
"config": {
"sort-packages": true
}
}