1.0.7 • Published 3 months ago

@scandipwa/magento-scripts-php-extensions v1.0.7

Weekly downloads
-
License
OSL-3.0
Repository
github
Last release
3 months ago

magento-scripts-php-extensions

This extension simplifies installation of memcached, pdo_sqlsrv, sqlsrv and ionCube extensions in CMA project.

Installation

  1. Install package.

    npm i @scandipwa/magento-scripts-php-extensions
    
    # with yarn
    
    yarn add @scandipwa/magento-scripts-php-extensions
  2. Enable extensions in cma.js

    // cma.js
    const {
        ioncube,
        memcached,
        pdo_sqlsrv,
        sqlsrv
    } = require('@scandipwa/magento-scripts-php-extensions');
    
    /** @type {import('@scandipwa/magento-scripts').CMAConfiguration} */
    module.exports = {
        // ... other configurations
        configuration: {
            php: {
                extensions: { // <- set extensions here
                    ioncube,
                    memcached,
                    pdo_sqlsrv,
                    sqlsrv
                }
            }
        }
    };
  3. Run magento-scripts

    npm start
    
    # with yarn
    
    yarn start

Demo

Demo setup available here

1.0.7

3 months ago

1.0.6

6 months ago

1.0.6-alpha.0

7 months ago

1.0.5

10 months ago

1.0.4

11 months ago

1.0.3

12 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

2 years ago