| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
- /**
- * 验证码配置
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- return [
- 'default' => [
- 'expire'=> 180, // 有效时间
- 'curve' => true, // 混淆曲线
- 'noise' => true, // 噪点
- 'backColor' => '#ecf2f4', // 背景颜色
- 'fontColors'=> ['#2c3e50', '#c0392b', '#16a085', '#c0392b', '#8e44ad', '#303f9f', '#f57c00', '#795548'] // 字体颜色
- ],
- ];
|