我现在使用Stripe作为我的支付网关,
我想要做的是根据环境切换密钥
在我的start.php中,我有以下设置
'local' => array('mymacpro'),
'production' => array('r2d2.mydomain.com')
我可以在stripe.php配置文件中执行以下操作。
if environment = local then use this key
else use this key
非常感谢任何帮助。
干杯,
答案 0 :(得分:1)
只需按照此处的说明http://laravel.com/docs/configuration#environment-configuration为两个环境执行两个文件并将密钥放在那里。
与app/config/stripe.php
和app/config/local/stripe.php
类似,其内容为
<?php
return [
'key' => 'KEY',
];
然后在您的应用Config::get('stripe.key')
中执行,然后自动切换。