PHP code example of madebyraygun / one-click-payments

1. Go to this page and download the library: Download madebyraygun/one-click-payments 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/ */

    

madebyraygun / one-click-payments example snippets




use craft\helpers\App;

return [
  "stripeSecretKey" => App::env('STRIPE_SECRET_KEY'),
  "stripeHookSecretKey" => App::env('STRIPE_HOOK_SECRET'),
  'forms' => [
    'formHandleOne' => [
      'thankyouLanding' => '/path/to/thank-you',
      'cancelLanding' => '/path/to/cancel-confirmation',
      'stripeSubscriptionProductId' => App::env('STRIPE_SUB_PRODUCT'),
      'stripeOneTimeProductId' => App::env('STRIPE_OT_PRODUCT'),
    ],
    'formHandleTwo' => [
      'thankyouLanding' => '/path/to/thank-you',
      'stripeOneTimeProductId' => App::env('STRIPE_OT_PRODUCT'),
    ]
  ],
];