refactor to composer api

Non working state
This commit is contained in:
Walz
2025-04-08 16:08:09 +02:00
parent 20eacdf96c
commit 1b27d03c4d
12 changed files with 405 additions and 38 deletions

27
composer.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "walzen665/gdprcookieconsent",
"description": "Adds a GDPR compliant cookie consent modal to your shop",
"license": "AFL-3.0",
"authors": [
{
"name": "Walzen665"
}
],
"autoload": {
"psr-4": {
"PrestaShop\\Module\\GdprCookieConsent\\": "src/"
}
},
"require": {
"php": ">=7.1.0",
"ext-json": "*"
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false,
"platform": {
"php": "7.1.0"
}
},
"type": "prestashop-module"
}