You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.3 KiB

5 months ago
<?php
return [
1 month ago
'tracks' => [
1 month ago
'材料与芯片',
'器件与模块',
1 month ago
'场景与应用',
1 month ago
'设备与服务',
1 month ago
],
1 month ago
'degrees' => ['associate', 'bachelor', 'master', 'doctorate', 'other'],
'location_countries' => ['cn', 'overseas'],
/** 意向参赛地点(报名表 event_location 可选值,稳定编码) */
'event_locations' => ['shanghai', 'suzhou', 'shenzhen'],
/** 观众报名「观赛目的」可选值(稳定编码) */
1 month ago
'audience_purposes' => [
1 month ago
'networking',
'collaboration',
'investment',
'study',
'media',
'other',
1 month ago
],
5 months ago
/** 单文件上限(KB);须保证 PHP upload_max_filesize、post_max_size 均大于此值(见 public/.user.ini 与 composer serve-dev) */
'file_max_kb' => 20480,
'file_mimes' => ['pdf', 'ppt', 'pptx', 'doc', 'docx', 'wps', 'rar', 'zip'],
3 months ago
/** 报名信息 ZIP 导出限制(可通过 .env 调整) */
'export' => [
3 months ago
'part_size' => (int) env('EXPORT_PART_SIZE', 10),
3 months ago
'chunk_size' => (int) env('EXPORT_CHUNK_SIZE', 20),
'max_files' => (int) env('EXPORT_MAX_FILES', 5000),
'max_total_bytes' => (int) env('EXPORT_MAX_BYTES', 2 * 1024 * 1024 * 1024),
'time_limit' => (int) env('EXPORT_TIME_LIMIT', 0),
],
5 months ago
];