Add initial files and templates for ps_emailalerts module

- Created LICENSE file for composer dependencies.
- Added autoload files: autoload_classmap.php, autoload_namespaces.php, autoload_psr4.php, autoload_real.php, and autoload_static.php.
- Initialized installed.json for composer.
- Added index.php and form templates for admin configuration.
- Implemented front-end templates for email alerts, including account management and product notifications.
- Included necessary headers and copyright notices in all new files.
This commit is contained in:
2025-04-22 23:48:43 +02:00
parent e53caaafab
commit c2c835faca
133 changed files with 12218 additions and 2 deletions

View File

@@ -0,0 +1,40 @@
{
"name": "prestashop/ps_cashondelivery",
"description": "PrestaShop module ps_cashondelivery",
"homepage": "https://github.com/PrestaShop/ps_cashondelivery",
"license": "AFL-3.0",
"authors": [
{
"name": "PrestaShop SA",
"email": "contact@prestashop.com"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"prestashop/php-dev-tools": "~3.0"
},
"config": {
"platform": {
"php": "5.6.0"
},
"preferred-install": "dist",
"classmap-authoritative": true,
"optimize-autoloader": true,
"prepend-autoloader": false
},
"autoload": {
"classmap": [
"ps_cashondelivery.php",
"controllers"
]
},
"scripts": {
"set-license-header": [
"@php ./vendor/bin/header-stamp --license=vendor/prestashop/header-stamp/assets/afl.txt --exclude=.github,node_modules,vendor,tests,_dev"
]
},
"type": "prestashop-module",
"author": "PrestaShop"
}