forked from alchemy-fr/Zippy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.41 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
{
"name": "alchemy/zippy",
"type": "library",
"description": "Zippy, the archive manager companion",
"keywords": ["zip", "tar", "bzip", "compression"],
"license": "MIT",
"authors": [
{
"name": "Alchemy",
"email": "dev.team@alchemy.fr",
"homepage": "http://www.alchemy.fr/"
}
],
"require": {
"php": ">=7.1",
"doctrine/collections": "~1.0",
"symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/process": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/polyfill-mbstring": "^1.3"
},
"require-dev": {
"ext-zip": "*",
"guzzle/guzzle": "~3.0",
"guzzlehttp/guzzle": "^6.0",
"phpunit/phpunit": "^7.0",
"symfony/finder": "^2.0.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"suggest": {
"ext-zip": "To use the ZipExtensionAdapter",
"guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6",
"guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3"
},
"autoload": {
"psr-4": {
"Alchemy\\Zippy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Alchemy\\Zippy\\Functional\\": "tests/Functional/",
"Alchemy\\Zippy\\Tests\\": "tests/Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}