HI,
i have one library at he App\Libraries and there i have file providers.php
<?php
return [
'slsp'=> [
'SLSP_SPOROPAY_PU_PREDCISLO'=> '000000',
'SLSP_SPOROPAY_PU_CISLO'=> '0013662162',
'SLSP_SPOROPAY_PU_KBANKY'=> '0900',
'SLSP_SPOROPAY_SHAREDSECRET'=> 'Z3qY08EpvLlAAoMZdnyUdQ==',
'SLSP_SPOROPAY_REDIRECTURLBASE'=> 'http://epaymentsimulator.monogram.sk/SLSP_SporoPay.aspx',
],
'paypal'=>[
'PAYPAL_USERNAME'=>'xxx',
'PAYPAL_PASSWORD'=>'xxx',
'PAYPAL_SIGNATURE'=>'xxxx',
'PAYPAL_CONNECTIONTIMEOUT'=>'3333',
'PAYPAL_RETRY'=>'true',
'PAYPAL_OGENABLED'=>'true',
'PAYPAL_FILENAME'=>'foo/bar',
'PAYPAL_LOGLEVEL'=>'5',
]
];
and than i would like get and set this value like
Config::get('providers.paypal.username');
Config::set('providers.paypal.username', 'someName');
What i must do when i want using it?
Thank you
You should place it in the config folder. Otherwise create a serviceprovider that publishes your config file to the config directory.
Not 100% sure, but I don't think you can call config on a file outside the config folder itself. How about storing your configuration variables inside the .env file? Then you could just make a providers.php file in the config folder, and reference the variables there.
.env
...
PAYPAL_USERNAME=xxx
PAYPAL_PASSWORD=xxx
PAYPAL_SIGNATURE=xxxx
...
config/providers.php
return array(
'paypal' => [
'username' => env('PAYPAL_USERNAME', 'xxx'),
'password' => env('PAYPAL_PASSWORD', 'xxx'),
...
]
);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community