https://github.com/mage2pro/stripe
Stripe integration with Magento 2
https://github.com/mage2pro/stripe
mage2pro mage2pro-module mage2pro-module-ready mage2pro-module-reusable mage2pro-payment magento2 magento2-extension magento2-module magento2-payment-gateway stripe
Last synced: 10 months ago
JSON representation
Stripe integration with Magento 2
- Host: GitHub
- URL: https://github.com/mage2pro/stripe
- Owner: mage2pro
- Created: 2017-01-27T17:36:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T01:44:48.000Z (about 2 years ago)
- Last Synced: 2024-12-16T09:33:20.238Z (over 1 year ago)
- Topics: mage2pro, mage2pro-module, mage2pro-module-ready, mage2pro-module-reusable, mage2pro-payment, magento2, magento2-extension, magento2-module, magento2-payment-gateway, stripe
- Language: PHP
- Homepage: https://upwork.com/fl/mage2pro
- Size: 520 KB
- Stars: 61
- Watchers: 6
- Forks: 8
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The module integrates Magento 2 with the **[Stripe](https://stripe.com)** payment service.
The module is **free** and **open source**.
## Screenshots
See also a [showcase](https://mage2.pro/tags/stripe-showcase) of the real clients usage.
### 1. Frontend. A simple payment form without saved bank cards

### 2. Frontend. Using a saved bank card

### 3. Frontend. Using a new bank card

### 4. Frontend. A [multishipping checkout](https://mage2.pro/t/4411).
### 5. Backend. A payment's imformation

### 6. Backend. Choosing the payments currency

### 7. Backend. The extension's settings

### 8. Backend. A transaction's details

## Demo videos
1. [Capture and Refund](https://www.youtube.com/watch?v=kBaiBnPNmEo)
2. [Preauthorization and Capture](https://www.youtube.com/watch?v=BnBlsafqPsM)
3. [Preauthorization and Voiding](https://www.youtube.com/watch?v=0kxVBCmhpHU)
4. [Review and Accept / Deny](https://www.youtube.com/watch?v=9W4FjZN8uKo)
5. [Capture from a Stripe account](https://www.youtube.com/watch?v=MjaOJUM9ddU)
6. [Refund from a Stripe account](https://www.youtube.com/watch?v=dUUzgnvKYCg)
7. [Save and reuse bank cards](https://www.youtube.com/watch?v=OlL6GndwOX4)
8. [Multishipping checkout](https://www.youtube.com/watch?v=Rw19I54SQTI)
## Who is using it?
[stripe.mage2.pro/customers](https://stripe.mage2.pro/customers)
See also a [showcase](https://mage2.pro/tags/stripe-showcase) of the real clients usage.
## How to install
[Hire me in Upwork](https://upwork.com/fl/mage2pro), and I will:
- install and configure the module properly on your website
- answer your questions
- solve compatiblity problems with third-party checkout, shipping, marketing modules
- implement new features you need
### Self-installation
```
bin/magento maintenance:enable
rm -f composer.lock
composer clear-cache
composer require mage2pro/stripe:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/code
bin/magento setup:di:compile
rm -rf pub/static/*
bin/magento setup:static-content:deploy -f en_US
bin/magento maintenance:disable
```
## How to update
```
bin/magento maintenance:enable
composer remove mage2pro/stripe
rm -f composer.lock
composer clear-cache
composer require mage2pro/stripe:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/code
bin/magento setup:di:compile
rm -rf pub/static/*
bin/magento setup:static-content:deploy -f en_US
bin/magento maintenance:disable
```