forked from tuna/tunasync-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer-mirror.config.php
89 lines (76 loc) · 2.42 KB
/
composer-mirror.config.php
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/**
* copy config.default.php to config.php
*/
return (object)[
/**
* distdir 用于存储 zip 包
*/
'distdir' => getenv("TUNASYNC_WORKING_DIR") . '/dist/',
/**
* 指向 mirrorUrl 对应的 web 实际目录
*/
'cachedir' => getenv("TUNASYNC_WORKING_DIR") . '/index/',
/**
* 程序运行过程中,生成的一些存储文件,比如都已经采集过哪些,做为下次增量的判断依据
*/
'dbdir' => getenv("TUNASYNC_WORKING_DIR") . '/db/',
/**
* packagistUrl:官方采集源
*/
'packagistUrl' => getenv('TUNASYNC_UPSTREAM_URL'), //'https://packagist.org',
/**
* 镜像包发布站点, packages.json 入口根域名
*/
'mirrorUrl' => 'https://mirror.tuna.tsinghua.edu.cn/packagist/index',
/**
* .json 中 dist 分发 zip 包的CDN域名
*/
'distUrl' => 'https://mirror.tuna.tsinghua.edu.cn/packagist/dist',
/**
* cloudDisk: 注意是 object,不是 array,内部的参数是 array
* 使用 Flyststem Adapter, 第三方云存储的封装类
*
* 使用又拍云:
* 'adapter' => 'ZenCodex\\Support\\Flysystem\\Adapter\\UpyunAdapter';
* 先安装扩展包: composer require zencodex/flysystem-upyun
*
* 使用七牛云:
* 'adapter' => 'Overtrue\\Flysystem\\Qiniu\\QiniuAdapter';
* 先安装扩展包: composer require overtrue/flysystem-qiniu
*
* 测试状态,可以使用空适配器:
* 'adapter' => 'League\\Flysystem\\Adapter\\NullAdapter';
*
* 其余的可这里查找: <https://github.com/thephpleague/flysystem>
*/
'cloudDisk' => (object)[
'adapter' => 'League\\Flysystem\\Adapter\\NullAdapter',
'config' => [
'operator' => 'composer',
'password' => '',
'bucket' => '',
'uploadType' => 'BLOCK',
],
'bucketMap' => [
'json' => 'mirror-json',
'zip' => 'mirror-dist',
]
],
/**
* guzzle 采集时的超时时间
*/
'timeout' => 3600,
/**
* 清理过期包时,判断过期的间隔时间,单位分钟
*/
'expireMinutes' => 20,
/**
* 最大并发数,越大采集效率越高
*/
'maxConnections' => 500,
/**
* isPrefetch:早期建立初始数据源时,利用又拍云的直接下载文件任务接口,可忽略
*/
'isPrefetch' => false,
];