-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.65 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.65 KB
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
58
59
60
61
62
{
"name": "squareetlabs/zipper",
"type": "library",
"description": "This is a simple Wrapper around the ZipArchive methods with some handy functions.\n",
"keywords": ["laravel", "ZIP", "Archive"],
"homepage": "https://github.com/SquareetLabs/zipper",
"license": "MIT",
"authors": [
{
"name": "Alberto Rial Barreiro",
"email": "alberto@squareet.com",
"homepage": "https://www.squareet.com",
"role": "Developer"
},
{
"name": "Jacobo Cantorna Cigarrán",
"email": "jacobo@squareet.com",
"homepage": "https://www.squareet.com",
"role": "Developer"
},
{
"name": "Nils Plaschke",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.0",
"ext-zip": "*",
"ext-json": "*",
"illuminate/support": "~5.5|^6.0|^7.0|^8.0",
"illuminate/filesystem": "~5.5|^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20|^8.5.21|^9.5.10",
"mockery/mockery": "^1.4.4"
},
"autoload": {
"psr-4": {
"SquareetLabs\\Zipper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SquareetLabs\\Zipper\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"SquareetLabs\\Zipper\\ZipperServiceProvider"
],
"aliases": {
"Zipper": "SquareetLabs\\Zipper\\Zipper"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}