forked from webysther/packagist-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.19 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
{
"name": "ianmustafa/packagist-mirror",
"description": "Creates a Packagist Mirror server.",
"keywords": ["packagist", "mirror"],
"license": "MIT",
"authors": [
{ "name": "Ian Mustafa", "email": "mail@ianmustafa.com" },
{ "name": "Webysther", "email": "webysther@gmail.com" }
],
"require": {
"php": ">=7.1",
"ext-zlib":"*",
"ext-json": "*",
"guzzlehttp/guzzle": "~6",
"vlucas/phpdotenv": "~2",
"symfony/console": "~3",
"sebastian/version": "~2",
"nesbot/carbon": "~2",
"php-snippets/circular-array": "~1",
"league/flysystem-cached-adapter": "~1",
"illuminate/support": "~5"
},
"require-dev": {
"webysther/composer-plugin-qa": "~1",
"webysther/composer-meta-qa": "~1",
"league/flysystem-memory": "~1",
"mikey179/vfsStream": "~1"
},
"suggest": {
"hirak/prestissimo": "A Composer plugin to enable parallel package installation."
},
"autoload": {
"psr-4": { "Webs\\Mirror\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Webs\\Mirror\\Tests\\": "tests/" }
},
"bin": [
"bin/mirror"
]
}