123456789101112131415161718192021222324252627282930 |
- <?php
- declare(strict_types=1);
- use think\facade\Cache;
- return [
- 'font_file' => '',
-
- 'click_world' => [
- 'backgrounds' => []
- ],
-
- 'block_puzzle' => [
- 'backgrounds' => [],
- 'templates' => [],
- 'offset' => 10,
- ],
-
- 'watermark' => [
- 'fontsize' => 12,
- 'color' => '#ffffff',
- 'text' => ''
- ],
- 'cache' => [
- 'constructor' => [Cache::class, 'instance']
- ]
- ];
|