- 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.
29 lines
531 B
JSON
29 lines
531 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|