-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
74 lines (74 loc) · 2.01 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "gyselroth/php-helper",
"description": "PHP helpers",
"keywords": ["helper", "array", "date", "file", "html", "image", "numeric", "server", "client", "string", "xml", "zip"],
"homepage": "https://gyselroth.com",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "gyselroth",
"email": "[email protected]",
"homepage": "http://www.gyselroth.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/gyselroth/pdfparser"
},
{
"type": "vcs",
"url": "https://github.com/gyselroth/PHPExcel"
}
],
"require": {
"php": ">=7.4",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-imagick": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-spl": "*",
"ext-xml": "*",
"ext-zip": "*",
"ext-zlib": "*",
"gyselroth/php-helper-log": "0.2.20",
"gyselroth/html-purifier-filters": "0.0.1",
"ezyang/htmlpurifier": "^4.9",
"iio/libmergepdf": "^3.0",
"itbz/fpdf": "^1.7",
"mikehaertl/phpwkhtmltopdf": "^2.2",
"phpoffice/phpexcel": "dev-mpdfCompatibilityFix@dev",
"smalot/pdfparser": "0.14.0",
"shardj/zf1-future": "^1.16",
"laminas/laminas-zendframework-bridge": "^1.0",
"laminas/laminas-json": "^3.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^0.12.4",
"phpunit/phpunit": "7.5.16"
},
"autoload": {
"psr-4": {
"Gyselroth\\Helper\\": "src/Gyselroth/Helper/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"secure-http": false,
"process-timeout" : 0
},
"scripts": {
"test": "phpunit tests/"
}
}