Skip to content

dsadinoff/stripe-payments

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stripe-payments

This is a fork of andyvr's stripe-payments project. It now works with version 2.0+ of OpenCart.

Stripe Payments is the simple and lightweight implementation of Stripe.com payment service for Opencart. Currently it is the only Stripe Opencart payment gateway extension that is free and open source. It's licensed under MIT license, therefore feel free to use it in any project or modify the source code.

Getting Started

Installation

The most convenient way to install the extension is with Composer, add following code to your composer.json file:

{
  "require": {
    "publiux/stripe-payments": "@dev-master"
  },
  "scripts": {
    "post-install-cmd": [
      "sh ./vendor/publiux/stripe-payments/extension-install.sh"
    ],
    "post-update-cmd": [
      "sh ./vendor/publiux/stripe-payments/extension-install.sh"
    ]
   }
}

If you don't use Composer you can just copy over admin, catalog and vendor folders to your Opencart root.

Setup

Activate the extension thru your Opencart Admin Panel.

The extension uses the Stripe API. You need to enter either Test or Live Stripe API keys on the extension settings page.

In order to obtain the Stripe API keys please login to your Stripe account dashboard, click on Your Account in the top right corner of the page, then Account Settings.
In the pop-up box click on the API Keys tab. Both Test and Live keypairs will be provided for you.

Use Test keys to test the Opencart extension. When testing is done replace test keys to live keys in the extension settings page to start accepting credit card payments thru Stripe.

About

Stripe.com Payments Extension for Opencart 2.0+

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 53.8%
  • Smarty 42.2%
  • CSS 3.6%
  • Shell 0.4%