PHP code example of shopware-blog / shopware-environment-variables
1. Go to this page and download the library: Download shopware-blog/shopware-environment-variables library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
shopware-blog / shopware-environment-variables example snippets
return [
'db' => [...],
'custom' =>
[
'plugins' =>
[
1 => [
'SwagPaymentPaypal' => [
'paypalUsername' => '1' . getenv('paypalUsername'),
'paypalPassword' => '1' . getenv('paypalPassword'),
],
],
2 => [
'SwagPaymentPaypal' => [
'paypalUsername' => '2' . getenv('paypalUsername'),
'paypalPassword' => '2' . getenv('paypalPassword'),
],
],
],
'config' => [
1 => [
'mailer_mailer' => 'test123',
],
2 => [
'mailer_mailer' => '321test',
],
],
],
];