feat: phase 2 api parity endpoints for extension
This commit is contained in:
16
app/config/dewemoji.php
Normal file
16
app/config/dewemoji.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'data_path' => env('DEWEMOJI_DATA_PATH', base_path('../../dewemoji-api/data/emojis.json')),
|
||||
|
||||
'pagination' => [
|
||||
'default_limit' => (int) env('DEWEMOJI_DEFAULT_LIMIT', 20),
|
||||
'max_limit' => (int) env('DEWEMOJI_MAX_LIMIT', 50),
|
||||
],
|
||||
|
||||
'license' => [
|
||||
'accept_all' => filter_var(env('DEWEMOJI_LICENSE_ACCEPT_ALL', false), FILTER_VALIDATE_BOOL),
|
||||
'pro_keys' => array_values(array_filter(array_map('trim', explode(',', (string) env('DEWEMOJI_PRO_KEYS', ''))))),
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user