Skip to content

i-lateral/silverstripe-checkout-stripe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Silverstripe Checkout Stripe

Adds Stripe payment option to the checkout module.

Dependancies

Installation

Either install via composer:

i-lateral/silverstripe-checkout-stripe: *

Or download and install to the "checkout-stripe" directory in your project root.

Setup

Once installed you will need to add your API Keys (found in Stripe under "Account Settings").

Add all four these via Silverstripe config:

YML

StripePayment:
  test_secret_key: test_xyz
  test_publish_key: test_xyz
  live_secret_key: live_xyz
  live_publish_key: live_xyz

PHP

StripePayment::config()->test_secret_key = "test_xyz";
StripePayment::config()->test_publish_key = "test_xyz";
StripePayment::config()->live_secret_key = "live_xyz";
StripePayment::config()->live_publish_key = "live_xyz";

Now enable the stripe payment by logging into the CMS then visiting global site settings.

Now click the "Checkout" tab and under payment methods click "Add".

Now then select "Stripe" from the dropdown.

About

Add stripe payments to the SIlverstripe Checkout

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages