forked from zanysoft/laravel-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.04 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
{
"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.co",
"authors": [
{
"name": "Zany Soft",
"email": "info@zanysoft.co",
"homepage": "http://www.zanysoft.co"
}
],
"keywords": [
"laravel-zip",
"laravel",
"laravel5",
"zip",
"unzip",
"extract",
"backup",
"ZipArchive",
"multiple",
"merge"
],
"extra": {
"laravel": {
"providers": [
"ZanySoft\\Zip\\ZipServiceProvider"
],
"aliases": {
"Zip": "ZanySoft\\Zip\\ZipFacade"
}
}
},
"autoload": {
"psr-4": {
"ZanySoft\\Zip\\": "src"
}
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0|^5.0",
"scrutinizer/ocular": "^1.0"
}
}