Skip to content

Commit e4a4318

Browse files
no message
1 parent fb116db commit e4a4318

File tree

1 file changed

+40
-16
lines changed

1 file changed

+40
-16
lines changed

README.md

Lines changed: 40 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,7 @@
1-
This extension integrates a Magento 2 based webstore with the **[Checkout.com](https://www.checkout.com)** payment service.
2-
3-
## How to install
4-
```
5-
composer require mage2pro/checkout.com:*
6-
bin/magento setup:upgrade
7-
rm -rf pub/static/* && bin/magento setup:static-content:deploy en_US <additional locales, e.g.: de_DE>
8-
rm -rf var/di var/generation generated/code && bin/magento setup:di:compile
9-
```
10-
If you have problems with these commands, please check the [detailed instruction](https://mage2.pro/t/263).
11-
12-
## Support
13-
- [Documentation](https://mage2.pro/c/extensions/checkout-com)
14-
- [Ask a question](https://mage2.pro/c/extensions/checkout-com)
15-
- [Report an issue](https://github.com/mage2pro/checkout.com/issues)
1+
This module integrates a Magento 2 based webstore with the **[Checkout.com](https://www.checkout.com)** payment service.
2+
The module is **free** and **open source**.
163

174
## Demo videos
18-
195
1. [A payment is **captured** in the simpliest case](https://www.youtube.com/watch?v=63dyHw_u4wI)
206
2. [A payment is **captured with 3D Secure** validation](https://www.youtube.com/watch?v=P0NFkaXuXtU)
217
3. [A payment is **preauthorized** on an order placement, and then **captured** from Magento 2 backend](https://www.youtube.com/watch?v=iUC7CMhyHiM)
@@ -29,3 +15,41 @@ If you have problems with these commands, please check the [detailed instruction
2915
11. [**Refunding** a payment from the Magento 2 backend](https://www.youtube.com/watch?v=JmDB2_cXx1U)
3016
12. [**Refunding** a payment from the linked Checkout.com account](https://www.youtube.com/watch?v=nqDdcC2D3GU)
3117

18+
## How to install
19+
[Hire me in Upwork](https://www.upwork.com/fl/mage2pro), and I will:
20+
- install and configure the module properly on your website
21+
- answer your questions
22+
- solve compatiblity problems with third-party checkout, shipping, marketing modules
23+
- implement new features you need
24+
25+
### 2. Self-installation
26+
```
27+
bin/magento maintenance:enable
28+
rm -f composer.lock
29+
composer clear-cache
30+
composer require mage2pro/checkout.com:*
31+
bin/magento setup:upgrade
32+
bin/magento cache:enable
33+
rm -rf var/di var/generation generated/code
34+
bin/magento setup:di:compile
35+
rm -rf pub/static/*
36+
bin/magento setup:static-content:deploy -f en_US <additional locales>
37+
bin/magento maintenance:disable
38+
```
39+
40+
## How to update
41+
```
42+
bin/magento maintenance:enable
43+
composer remove mage2pro/checkout.com
44+
rm -f composer.lock
45+
composer clear-cache
46+
composer require mage2pro/checkout.com:*
47+
bin/magento setup:upgrade
48+
bin/magento cache:enable
49+
rm -rf var/di var/generation generated/code
50+
bin/magento setup:di:compile
51+
rm -rf pub/static/*
52+
bin/magento setup:static-content:deploy -f en_US <additional locales>
53+
bin/magento maintenance:disable
54+
```
55+

0 commit comments

Comments
 (0)