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' => [
'芯片与组件',
'制造与封装',
'材料与设备',
'场景与应用',
],
5 months ago
'degrees' => ['大专', '本科', '硕士', '博士', '其他'],
'location_countries' => ['中国', '海外'],
1 month ago
/** 参赛地点(报名表 event_location 可选值) */
'event_locations' => ['上海', '苏州', '深圳'],
/** 观众报名「观赛目的」可选值 */
'audience_purposes' => [
'项目交流',
'产业合作',
'投资对接',
'学习参访',
'媒体报道',
'其他',
],
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
];