forked from arajcany/PrePressTricks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 869 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
{
"name": "arajcany/pre-press-tricks",
"description": "Box of Tricks for common PrePress related tasks.",
"license": "MIT",
"type": "package",
"keywords": [
"PrePress",
"Tools",
"Tricks"
],
"authors": [
{
"name": "Andrew Rajcany",
"email": "a.rajcany@mac.com"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-dom": "*",
"ext-soap": "*",
"ext-gd": "*",
"ext-exif": "*",
"cakephp/core": ">=4.5",
"cakephp/i18n": ">=4.5",
"intervention/image": "^2.7",
"league/mime-type-detection": "^1.11",
"tecnickcom/tc-lib-pdf": "^8.0",
"arajcany/tool-box": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "*",
"symfony/var-dumper": "*"
},
"suggest": {
"ext-imagick": "*"
},
"autoload": {
"psr-4": {
"arajcany\\PrePressTricks\\": "src"
}
}
}