Files
gtsit/config/app.php
2026-08-10 21:19:10 +09:00

30 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
declare(strict_types=1);
return [
'name' => '(주)지티에스정보통신',
'legal_name' => '(주)지티에스정보통신',
'base_url' => 'https://gtsit.co.kr',
'base_path' => rtrim((string) (getenv('GTSIT_BASE_PATH') ?: ''), '/'),
'app_root' => (string) (getenv('GTSIT_APP_ROOT') ?: dirname(__DIR__)),
'public_root' => (string) (getenv('GTSIT_PUBLIC_ROOT') ?: dirname(__DIR__) . '/public'),
'noindex' => filter_var(getenv('GTSIT_NOINDEX') ?: false, FILTER_VALIDATE_BOOL),
'timezone' => 'Asia/Seoul',
'session_name' => 'gtsit_session',
'naver_maps' => [
'client_id' => (string) (getenv('NAVER_MAPS_CLIENT_ID') ?: '0xuekem2qn'),
'query' => '서울특별시 송파구 정의로7길 13',
'latitude' => 37.48524,
'longitude' => 127.11478,
],
'contact' => [
'phone' => '1833-4917',
'phone_sub' => '1833-4918',
'fax' => '02-6442-0670',
'email' => 'gts0201@naver.com',
'address' => '서울시 송파구 정의로7길 13, B동 오피스 1020호',
'business_hours' => '평일 09:0018:00',
],
];