-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
35 lines (35 loc) · 1.01 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
{
"name": "zencodex/composer-mirror",
"description": "mirror full packages on packagist.org, including json and dist/zip files",
"license": "MIT",
"authors": [
{
"name": "扣丁禅师",
"email": "[email protected]"
}
],
"require": {
"upyun/sdk": "^3.3",
"qxsch/worker-pool": "^1.5",
"guiguiboy/php-cli-progress-bar": "dev-master",
"php": ">=5.6",
"ext-json": "*",
"ext-hash": "*",
"ext-curl": "*",
"ext-zlib": "*",
"symfony/finder": "^4.1",
"pda/pheanstalk": "^3.1",
"symfony/console": "^4.1",
"zencodex/flysystem-upyun": "^1.0",
"cebe/markdown": "~1.2.0",
"league/flysystem": "^1.1"
},
"autoload": {
"psr-4": {
"ZenCodex\\ComposerMirror\\": "src/"
}
},
"scripts": {
"sync": "rsync -rvz --include=cache/index.php --include=vendor --exclude-from=.gitignore ./ root@linodejp:/home/zencodex/composer-mirror/"
}
}