File: D:/HostingSpaces/SBogers10/shop.komma.nl/config/payment.php
<?php
return [
/*
|--------------------------------------------------------------------------
| Service provider
|--------------------------------------------------------------------------
| The current service provider that should be used. The name must be one of
| the first level key names of the payment_service_providers array below
*/
'payment_service_provider' => env('PAYMENT_SERVICE_PROVIDER', 'komma'),
/*
|--------------------------------------------------------------------------
| Shop name
|--------------------------------------------------------------------------
| Many providers will so a name we using, we defined the used name here.
*/
'shop_name' => env('SHOP_NAME', 'Komma shop'),
/*
|--------------------------------------------------------------------------
| Payment service providers
|--------------------------------------------------------------------------
| This is where payment service providers are configured.
| The first level keys just give the configs a name. The second level keys
| Define environments, that must correspond to the value of APP_ENV
*/
'payment_service_providers' => [
'mollie' => [
'api_key' => env('MOLLIE_API_KEY', null),
'adapter' => \App\Payment\PSPAdapters\Mollie::class,
],
'multisafepay' => [
'api_key' => env('MULTISAFEPAY_API_KEY', null),
'google_analytics_key' => env('MULTISAFEPAY_GOOGLE_ANALYTICS_KEY', null),
'adapter' => \App\Payment\PSPAdapters\MultiSafepay::class,
],
// Fake psp adapter for testing for testing
// NOTICE: DON'T USE ON PRODUCTION ENVIRONMENTS FOR SECURITY REASONS
'komma' => [
'adapter' => \App\Payment\PSPAdapters\Komma::class,
],
],
];