Add Ceneo Trusted Reviews module with initial implementation

- Created Html helper class for displaying information and translations.
- Added index.php files for various directories to prevent direct access.
- Implemented Polish translations for the module.
- Set up upgrade scripts for future module updates.
- Included Composer autoloading files and configurations.
- Added template files for displaying header and order confirmation scripts.
- Established .htaccess rules for security in vendor directory.
This commit is contained in:
2025-11-14 15:23:09 +01:00
parent 4a1e6a4424
commit 15d1a30e88
39 changed files with 5350 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
{
"name": "ceneo/ceneotrustedreviews",
"description": "Ceneo Trusted Reviews",
"license": "MIT",
"autoload": {
"psr-4": {
"CeneoTrustedReviews\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false,
"optimize-autoloader": true
},
"authors": [
{
"name": "Ceneo"
}
],
"type": "prestashop-module",
"author": "Ceneo",
"require-dev": {
"phpstan/phpstan": "^1.10"
},
"scripts": {
"build:prod": "composer install -v --no-dev"
}
}