-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.42 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.42 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
{
"name": "pimcore/skeleton",
"type": "project",
"license": "proprietary",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"process-timeout": 0,
"allow-plugins": {
"symfony/runtime": true
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "~8.4.0 || ~8.5.0",
"pimcore/pimcore": "^2026.1.0",
"pimcore/platform-version": "^2026.1.0",
"pimcore/quill-bundle": "*",
"pimcore/studio-ui-bundle": "*",
"pimcore/studio-backend-bundle": "*",
"symfony/amqp-messenger": "^7.4",
"symfony/dotenv": "^7.4",
"symfony/runtime": "^7.4"
},
"require-dev": {
"codeception/codeception": "^5.3",
"codeception/module-symfony": "^3.5"
},
"suggest": {
"pimcore/data-hub": "Universal data interface for GraphQL, CSV and other formats"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Pimcore\\Model\\DataObject\\": "var/classes/DataObject"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"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-scripts": [
"Pimcore\\Composer::clearCache",
"Pimcore\\Composer::installAssets"
]
}
}