-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.27 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
{
"name": "pimcore/skeleton",
"type": "project",
"license": "GPL-3.0-or-later",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"process-timeout": 0
},
"require": {
"pimcore/data-hub": "^1.5",
"pimcore/data-importer": "^1.7",
"pimcore/frontend-permission-toolkit-bundle": "^1.5",
"pimcore/perspective-editor": "^1.5",
"pimcore/pimcore": "^10.5",
"symfony/sendgrid-mailer": "^6.0",
"symfony/sendinblue-mailer": "^6.0",
"youwe/workflow-gui": "dev-master"
},
"require-dev": {
"codeception/codeception": "^4.1.12"
},
"suggest": {
"pimcore/data-hub": "Universal data interface for GraphQL, CSV and other formats"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Pimcore\\Model\\DataObject\\": "var/classes/DataObject"
}
},
"scripts": {
"post-create-project-cmd": "Pimcore\\Composer::postCreateProject",
"post-install-cmd": [
"Pimcore\\Composer::postInstall",
"@pimcore-scripts"
],
"post-update-cmd": [
"Pimcore\\Composer::postUpdate",
"@pimcore-scripts",
"Pimcore\\Composer::executeMigrationsUp",
"@pimcore-scripts"
],
"pimcore-scripts": [
"Pimcore\\Composer::clearCache",
"Pimcore\\Composer::installAssets"
]
}
}