feat:바로빌 CERT_KEY 테스트/운영 모드 분리

- BAROBILL_CERT_KEY_TEST: 테스트 환경용
- BAROBILL_CERT_KEY_PROD: 운영 환경용
- BAROBILL_TEST_MODE에 따라 자동 선택

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
pro
2026-01-23 10:50:46 +09:00
parent 925e22a4c4
commit d212956f25
2 changed files with 15 additions and 7 deletions

View File

@@ -54,16 +54,18 @@
| 바로빌 API
|--------------------------------------------------------------------------
| 바로빌 SOAP 웹서비스 연동 설정
| - cert_key: 바로빌 개발자센터에서 발급받은 CERTKEY
| - cert_key_test: 테스트 환경용 CERTKEY
| - cert_key_prod: 운영 환경용 CERTKEY
| - corp_num: 파트너 사업자번호 (하이픈 제외)
| - test_mode: 테스트 환경 사용 여부
| - test_mode: 테스트 환경 사용 여부 (true: 테스트, false: 운영)
|
| @see https://dev.barobill.co.kr/
*/
'barobill' => [
'cert_key' => env('BAROBILL_CERT_KEY', ''),
'cert_key_test' => env('BAROBILL_CERT_KEY_TEST', ''),
'cert_key_prod' => env('BAROBILL_CERT_KEY_PROD', ''),
'corp_num' => env('BAROBILL_CORP_NUM', ''),
'test_mode' => env('BAROBILL_TEST_MODE', false),
'test_mode' => env('BAROBILL_TEST_MODE', true),
],
/*