-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
61 lines (61 loc) · 2.01 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "thelia/thelia-project",
"description": "Thelia is an ecommerce CMS.",
"license": "LGPL-3.0+",
"require": {
"thelia/thelia-skeleton": "dev-main",
"symfony/flex": "^2.4",
"thelia/frontoffice-modern-template": "dev-main",
"thelia/open-api-module": "dev-main|^2.2",
"thelia/smarty-redirection-module": "dev-main",
"thelia/choice-filter-module": "dev-main",
"thelia/custom-delivery-module": "dev-main",
"thelia/store-seo-module": "dev-main",
"thelia/better-seo-module": "dev-main",
"thelia/rewrite-url-module": "dev-main",
"thelia/url-sanitizer-module": "dev-main",
"thelia/canonical-url-module": "dev-main",
"thelia/short-code-meta-module": "dev-main",
"thelia/thelia-blocks-module": "dev-main",
"thelia/thelia-library-module": "dev-main",
"thelia/product-loop-attribute-filter-module": "dev-main"
},
"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 [email protected]"
],
"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
}
}
}