HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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,
        ],
    ],
];