123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- declare(strict_types=1);
- return [
- 'font_file' => '',
-
- 'click_world' => [
- 'backgrounds' => []
- ],
-
- 'block_puzzle' => [
-
- 'backgrounds' => [
- public_path() . 'statics/images/ajcaptcha1.jpg',
- public_path() . 'statics/images/ajcaptcha2.jpg',
- public_path() . 'statics/images/ajcaptcha3.jpg',
- public_path() . 'statics/images/ajcaptcha4.jpg',
- public_path() . 'statics/images/ajcaptcha5.jpg',
- public_path() . 'statics/images/ajcaptcha6.jpg',
- ],
-
- 'templates' => [],
- 'offset' => 10,
- 'is_cache_pixel' => true,
- 'is_interfere' => true,
- ],
-
- 'watermark' => [
- 'fontsize' => 12,
- 'color' => '#000000',
- 'text' => ''
- ],
- 'cache' => [
-
- 'constructor' => app()->make(\think\Cache::class),
- 'method' => [
-
-
- ],
- 'options' => [
-
- 'expire' => 300,
- 'prefix' => '',
- 'path' => '',
- 'serialize' => [],
- ]
- ]
- ];
|