123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <?php
-
- return [
-
-
-
-
- 'license_key' => env('STATAMIC_LICENSE_KEY'),
-
-
-
-
- 'addons_path' => base_path('addons'),
-
-
-
-
- 'send_powered_by_header' => true,
-
-
-
-
- 'date_format' => 'F jS, Y',
-
-
-
-
- 'charset' => 'UTF-8',
-
-
-
-
- 'track_last_update' => true,
-
-
-
-
- 'cache_tags_enabled' => env('STATAMIC_CACHE_TAGS_ENABLED', true),
-
-
-
-
- 'php_memory_limit' => '-1',
- 'php_max_execution_time' => '0',
- 'ajax_timeout' => '600000',
- 'pcre_backtrack_limit' => '-1',
-
-
-
-
- 'debugbar' => [
- 'pretty_print_variables' => true,
- ],
-
-
-
-
- 'ascii_replace_extra_symbols' => false,
-
-
-
-
- 'update_references' => true,
-
- ];
|