This repository has been moved to https://github.com/axeptio/prestashop-plugin.
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!
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.
For development
We use Webpack to compile our javascript and scss files.
In order to compile those files, you must :
- have Node 10+ installed locally
- run
npm installin the root folder to install dependencies - then run
npm run watchto 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.
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.