관리-도구
편집 파일: payu.php
<?php return [ /* |-------------------------------------------------------------------------- | Api Key |-------------------------------------------------------------------------- | | The payu API key. */ 'api_key' => env('PAYU_API_KEY'), /* |-------------------------------------------------------------------------- | Api Secret |-------------------------------------------------------------------------- | | The payu API login. */ 'api_login' => env('PAYU_API_LOGIN'), /* |-------------------------------------------------------------------------- | Merchant ID |-------------------------------------------------------------------------- | | Your PayU merchant ID. */ 'merchant_id' => (int) env('PAYU_MERCHANT_ID', 1), /* |-------------------------------------------------------------------------- | Language |-------------------------------------------------------------------------- | | The language of the interaction with the API. */ 'language' => env('PAYU_LANGUAGE', 'es'), /* |-------------------------------------------------------------------------- | Is Test |-------------------------------------------------------------------------- | | Specifies if the requests should use the environment test. */ 'is_test' => (bool) env('PAYU_IS_TEST', false), ];