-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathcomposer.json
56 lines (56 loc) · 1.07 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
{
"name": "zanysoft/laravel-zip",
"description": "laravel-zip is the world's leading zip utility for file compression and backup.",
"license": "MIT",
"homepage": "http://www.zanysoft.net",
"authors": [
{
"name": "Zany Soft",
"email": "[email protected]",
"homepage": "http://www.zanysoft.net"
}
],
"keywords": [
"laravel-zip",
"laravel",
"laravel8",
"laravel9",
"zip",
"unzip",
"extract",
"backup",
"ZipArchive",
"multiple",
"merge"
],
"require": {
"php": ">=7.4",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"ext-zip": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"scrutinizer/ocular": "^1.9",
"orchestra/testbench": "^6.24"
},
"autoload": {
"psr-4": {
"ZanySoft\\Zip\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ZanySoft\\Zip\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"ZanySoft\\Zip\\ZipServiceProvider"
],
"aliases": {
"Zip": "ZanySoft\\Zip\\Facades\\Zip"
}
}
}
}