ionCube Extension

This package is for magento-scripts V1 only!

This package simplifies the installation of the ionCube extension in the CMA project using magento-scripts V1.

Installation

1. Install package.

npm i @scandipwa/[email protected]

# with yarn

yarn add @scandipwa/[email protected]

2. Enable extension in cma.js

cma.js
const ioncube = require('@scandipwa/magento-scripts-php-ioncube-extension');

/** @type {import('@scandipwa/magento-scripts').CMAConfiguration} */
module.exports = {
    magento: {
        // ... magento config
    },
    configuration: {
        php: {
            extensions: {
                ioncube // <- set extension here
            }
        }
    }
};

3. Run magento-scripts

4. Confirm that extension is installed

Demo

Demo setup available here

Last updated