-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 973 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
{
"name": "gyselroth/php-helper-zip",
"description": "PHP ZIP helpers",
"keywords": ["helper", "zip"],
"homepage": "https://gyselroth.com",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "gyselroth",
"email": "[email protected]",
"homepage": "http://www.gyselroth.com"
}
],
"require": {
"php": ">=7.4",
"ext-zip": "*",
"ext-zlib": "*",
"gyselroth/php-helper-log": "0.2.20"
},
"require-dev": {
"phpunit/phpunit": "7.5.16",
"phpstan/phpstan": "^0.12.4"
},
"autoload": {
"psr-4": {
"Gyselroth\\HelperZip\\": "src/Gyselroth/HelperZip/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"secure-http": false,
"process-timeout" : 0
},
"scripts": {
"test": "phpunit tests/"
}
}