forked from Chumper/Zipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.44 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
57
{
"name": "64robots/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/64robots/zipper",
"license": "Apache2",
"authors": [
{
"name": "Nils Plaschke",
"email": "[email protected]",
"homepage": "http://nilsplaschke.de",
"role": "Creator"
},
{
"name": "64 Robots Team",
"email": "jon@64robots",
"homepage": "https://64robots.com",
"role": "Maintaining Developers"
}
],
"require": {
"php": ">=5.6.0",
"ext-zip": "*",
"illuminate/support": "^5.0",
"illuminate/filesystem": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"R64\\Zipper\\": "src/R64/Zipper"
}
},
"autoload-dev": {
"psr-4": {
"R64\\Zipper\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"R64\\Zipper\\ZipperServiceProvider"
],
"aliases": {
"Zipper": "R64\\Zipper\\Zipper"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}