-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 872 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
{
"name": "cosmin-ciolacu/zipper",
"description": "A simple zip utility for creating zip files and extracting items to a specific path",
"type": "library",
"license": "MIT",
"keywords": [
"zip",
"zipper",
"zipper-php",
"zipper-library"
],
"version": "1.0.0",
"autoload": {
"psr-4": {
"CosminCiolacu\\Zipper\\": "src/",
"CosminCiolacu\\Zipper\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "cosmin ciolacu",
"email": "[email protected]"
}
],
"require-dev": {
"pestphp/pest": "^2.34",
"pestphp/pest-plugin": "^2.1"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"ext-zip": "*",
"php": "^7.4 || ^8.0"
}
}