forked from Chumper/Zipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 841 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
{
"name": "zorx/zipper",
"type": "library",
"description": "This is a little neat helper for the ZipArchive methods with handy functions",
"keywords": ["laravel", "ZIP", "Archive"],
"homepage": "http://github.com/Chumper/zipper",
"license": "Apache2",
"authors": [
{
"name": "Nils Plaschke",
"email": "[email protected]",
"homepage": "http://nilsplaschke.de",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.x",
"illuminate/filesystem": "5.x"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-0": {
"Chumper\\Zipper": "src/"
}
},
"minimum-stability": "dev"
}