https://github.com/conekta/customer-magento-plugin
https://github.com/conekta/customer-magento-plugin
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/conekta/customer-magento-plugin
- Owner: conekta
- Created: 2020-03-26T00:36:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-26T18:09:38.000Z (2 months ago)
- Last Synced: 2025-03-26T18:27:48.674Z (2 months ago)
- Language: PHP
- Size: 334 KB
- Stars: 5
- Watchers: 10
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README

Magento 2 Plugin v.5.1.8 (Stable)
========================Installation for Magento 2.3
-----------1. First add this repository in your composer config
```bash
composer config repositories.conekta git https://github.com/conekta/customer-magento-plugin
```2. Add composer dependency
```bash
composer require conekta/conekta_payments 5.1.8
```3. Update Magento
```bash
php bin/magento setup:upgrade
```4. Compile the component
```bash
php bin/magento setup:di:compile
```5. Enable plugin
```bash
php bin/magento module:enable conekta_payments
```6. Update and/or enable cache
```bash
bin/magento c:f
```Installation for Magento 2.4
-----------1. First add this repository in your composer config
```bash
composer config repositories.conekta git https://github.com/conekta/customer-magento-plugin
```2. Add composer dependency
```bash
composer require conekta/conekta_payments master
```3. Update Magento
```bash
php bin/magento setup:upgrade
```4. Compile the component
```bash
php bin/magento setup:di:compile
```5. Enable plugin
```bash
php bin/magento module:enable conekta_payments
```6. Update and/or enable cache
```bash
bin/magento c:f
```Plugin updates
-----------1. List all the components
```bash
php bin/magento module:status
```
2. Verify that the Conekta_Payments component is listed3. Disable the module
```bash
php bin/magento module:disable Conekta_Payments --clear-static-content
```4. If it exists, delete the generated files in the folder ```/generated/code/Conekta/```
5. Add composer dependency
```bash
composer require conekta/conekta_payments master
```6. Update Magento
```bash
php bin/magento setup:upgrade
```7. Compile the component
```bash
php bin/magento setup:di:compile
```8. Enable plugin
```bash
php bin/magento module:enable conekta_payments
```9. Update and/or enable cache
```bash
bin/magento c:f
```Magento Version Compatibility
-----------------------------
The plugin has been tested in Magento 2.3 and 2.4
Support is not guaranteed for untested versions.#development local
```
composer install --ignore-platform-req=ext-gd --ignore-platform-req=ext-intl --ignore-platform-req=ext-xsl
``