[08/06/2024] Initial commit

This commit is contained in:
2024-06-08 11:07:49 +02:00
commit b32b05464d
420 changed files with 11740 additions and 0 deletions

61
domokits/composer.json Normal file
View File

@@ -0,0 +1,61 @@
{
"license": "proprietary",
"require": {
"thelia/thelia-skeleton": "~2.5.3",
"symfony/flex": "^1.19",
"thelia/frontoffice-modern-template": "~2.5.3",
"thelia/open-api-module": "~2.1.0",
"thelia/smarty-redirection-module": "~2.0.0",
"thelia/choice-filter-module": "~2.1.0",
"thelia/custom-delivery-module": "~3.1.0",
"thelia/store-seo-module": "~2.0.0",
"thelia/better-seo-module": "~2.1.0",
"thelia/rewrite-url-module": "~2.1.0",
"thelia/url-sanitizer-module": "~2.1.0",
"thelia/canonical-url-module": "~2.1.0",
"thelia/short-code-meta-module": "~2.0.0",
"thelia/thelia-blocks-module": "^2.0.3-beta",
"thelia/thelia-library-module": "^1.1.7",
"thelia/product-loop-attribute-filter-module": "~2.0.0",
"thelia/reset-password-module": "~1.0.1",
"thelia/re-captcha-module": "~3.0.1"
},
"suggest": {
"vlopes/maintenance-module": "Add a way to put your site in maintenance mode",
"thelia/order-creation-module": "Create order from admin",
"cqfdev/best-sellers-module": "Show your best sellers on your home page",
"thelia/alternate-hreflang-module": "Generates a alternateHreflang URL for every page of your shop"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"demo-database": [
"php Thelia thelia:dev:reloadDB -f",
"php local/setup/import.php",
"php Thelia admin:create --login_name thelia --password thelia --last_name thelia --first_name thelia --email thelia@example.com"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-autoload-dump": [
"Thelia\\Config\\InitConfig::initConfig"
]
},
"autoload": {
"psr-4": {
"": [
"local/modules/",
"var/cache/propel/model"
],
"TheliaMain\\": "var/cache/propel/database/TheliaMain",
"App\\": "src/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"thelia/installer": true
}
}
}