Laravel 4 - 切换每个环境的配置值

时间:2014-08-05 00:24:27

标签: laravel laravel-4 stripe-payments

我现在使用Stripe作为我的支付网关,

我想要做的是根据环境切换密钥

在我的start.php中,我有以下设置

'local' => array('mymacpro'),
'production' => array('r2d2.mydomain.com')

我可以在stripe.php配置文件中执行以下操作。

if environment = local then use this key
else use this key

非常感谢任何帮助。

干杯,

1 个答案:

答案 0 :(得分:1)

只需按照此处的说明http://laravel.com/docs/configuration#environment-configuration为两个环境执行两个文件并将密钥放在那里。

app/config/stripe.phpapp/config/local/stripe.php类似,其内容为

<?php
return [
    'key' => 'KEY',
];

然后在您的应用Config::get('stripe.key')中执行,然后自动切换。