forked from gyselroth/php-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (69 loc) · 1.78 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
{
"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.1.0",
"ext-fileinfo": "*",
"ext-imagick": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-spl": "*",
"ezyang/htmlpurifier": "^4.9",
"iio/libmergepdf": "^3.0",
"itbz/fpdf": "^1.7",
"mikehaertl/phpwkhtmltopdf": "^2.2",
"monolog/monolog": "^1.17",
"phpoffice/phpexcel": "dev-mpdfCompatibilityFix@dev",
"smalot/pdfparser": "0.11.x-dev@dev",
"zf1/zend-date": "1.12.20",
"zf1/zend-registry": "^1.12"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.6"
},
"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/"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}