the browser-facing portion of osu!
at master 22 lines 748 B view raw
1<?php 2 3return [ 4 'allow_restricted_users' => get_bool(env('STORE_ALLOW_RESTRICTED_USERS')) ?? false, 5 'mail' => [ 6 'donation_thanks' => [ 7 'sender_address' => env('STORE_THANKS_SENDER_ADDRESS', 'osu@ppy.sh'), 8 'sender_name' => env('STORE_THANKS_SENDER_NAME', 'osu!'), 9 ], 10 ], 11 'order' => [ 12 'prefix' => presence(env('STORE_ORDER_PREFIX'), 'store'), 13 'stale_days' => get_int(env('STORE_STALE_DAYS')) ?? 14, 14 ], 15 'queue' => [ 16 'notifications' => presence(env('STORE_NOTIFICATIONS_QUEUE'), 'store-notifications'), 17 ], 18 'shopify' => [ 19 'domain' => presence(env('SHOPIFY_DOMAIN')), 20 'storefront_token' => presence(env('SHOPIFY_STOREFRONT_TOKEN')), 21 ], 22];