forked from webysther/packagist-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.03 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
{
"name": "webysther/packagist-mirror",
"description": "Build mirror of packagist",
"keywords": ["packagist", "mirror"],
"license": "MIT",
"authors": [
{ "name": "Webysther", "email": "webysther@gmail.com" }
],
"require": {
"php": ">=7.2",
"ext-zlib":"*",
"ext-json": "*",
"guzzlehttp/guzzle": "~6",
"vlucas/phpdotenv": "~4",
"symfony/console": "~4",
"sebastian/version": "~2",
"nesbot/carbon": "~2",
"php-snippets/circular-array": "~1",
"league/flysystem-cached-adapter": "~1",
"illuminate/support": "~6"
},
"require-dev": {
"phpunit/phpunit": "~8",
"league/flysystem-memory": "~1",
"mikey179/vfsstream": "~1"
},
"suggest": {
"hirak/prestissimo": "Composer parallel install plugin"
},
"autoload": {
"psr-4": { "Webs\\Mirror\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Webs\\Mirror\\Tests\\": "tests/" }
},
"bin": [
"bin/mirror"
]
}