Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Latest commit

 

History

History
45 lines (27 loc) · 2.01 KB

File metadata and controls

45 lines (27 loc) · 2.01 KB

This repository has been moved

This repository has been moved to https://github.com/axeptio/prestashop-plugin.

Axeptio Official Module for PrestaShop

Coding Standart

Unit tests

Quality Gate Status

About

New rules for cookies: you need to collect consent for your cookies. Be a step ahead with our innovative solution, which is fun and respectful of your users!

Installation

To install module on PrestaShop, download zip package form Product page on PrestaShop Addons.

This module contain composer.json file. If you clone or download the module from github repository, run the composer install from the root module folder.

See the composer documentation to learn more about the composer.json file.

Compiling assets

For development

We use Webpack to compile our javascript and scss files.
In order to compile those files, you must :

  1. have Node 10+ installed locally
  2. run npm install in the root folder to install dependencies
  3. then run npm run watch to compile assets and watch for file changes

For production

Run npm run build to compile for production.
Files are minified, console.log and comments dropped.

Cs fixer

php vendor/bin/php-cs-fixer fix --no-interaction --dry-run --diff to show code lines to be fixed.

php vendor/bin/php-cs-fixer fix to fix automatically all files.