-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.78 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 1.78 KB
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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "thelia/thelia-project",
"description": "Thelia is an ecommerce CMS.",
"license": "GPL-3.0-or-later",
"require": {
"thelia/thelia-skeleton": "^3.0",
"symfony/flex": "^2.4"
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"thelia-install": [
"php bin/install"
],
"demo-database": [
"php bin/install --with-demo --with-admin --admin_login=thelia --admin_password=thelia --admin_first_name=thelia --admin_last_name=thelia --admin_email=thelia@example.com"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"autoload": {
"psr-4": {
"": [
"local/modules/",
"vendor/thelia/modules",
"var/cache/propel/model"
],
"TheliaMain\\": "var/cache/propel/database/TheliaMain",
"App\\": "src/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"thelia/installer": true,
"composer/installers": true,
"symfony/runtime": true
}
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.4.*",
"endpoint": [
"https://api.github.com/repos/thelia/thelia-recipes/contents/index.json?ref=main",
"flex://defaults"
]
},
"installer-paths": {
"vendor/{$vendor}/modules/{$name}": [
"type:thelia-module"
],
"templates/frontOffice/{$name}": [
"type:thelia-frontoffice-template"
],
"templates/backOffice/{$name}": [
"type:thelia-backoffice-template"
],
"templates/email/{$name}": [
"type:thelia-email-template"
],
"templates/pdf/{$name}": [
"type:thelia-pdf-template"
],
"local/": [
"type:thelia-local"
]
}
}
}