Files
desktop/custom/apps/fx-rates/config/example.config.php
Lars Gebhardt-Kusche ac2d95fc56
All checks were successful
Deploy / deploy-staging (push) Successful in 25s
Deploy / deploy-production (push) Has been skipped
asdasd
2026-06-25 00:17:31 +02:00

16 lines
525 B
PHP

<?php
declare(strict_types=1);
return [
'FX_RATES_PROVIDER' => 'currencyapi',
'FX_RATES_API_VERSION' => 'v2',
'FX_RATES_API_URL' => 'https://currencyapi.net',
'FX_RATES_CURRENCIES_URL' => 'https://currencyapi.net',
'FX_RATES_API_KEY' => 'eb18ce459ffb0461c59229b478f2e00388d1',
'FX_RATES_TIMEOUT' => '10',
'FX_RATES_REFRESH_MAX_AGE_HOURS' => '6',
'FX_RATES_DEFAULT_BASE_CURRENCY' => 'EUR',
'FX_RATES_DISPLAY_BASE_CURRENCY' => 'EUR',
'FX_RATES_SCHEDULE_TIMEZONE' => 'Europe/Berlin',
];