-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
70 lines (70 loc) · 1.78 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
62
63
64
65
66
67
68
69
70
{
"name": "instride/pimcore-skeleton",
"type": "project",
"description": "The Pimcore skeleton for projects at instride.",
"homepage": "https://instride.ch",
"license": "proprietary",
"authors": [
{
"name": "instride AG",
"email": "connect@instride.ch",
"homepage": "https://instride.ch",
"role": "Digital Agency"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true
}
},
"require": {
"php": ">=8.3",
"dachcom-digital/emailizr": "^3.1.0",
"dachcom-digital/seo": "^3.1.3",
"dachcom-digital/toolbox": "^5.2.2",
"instride/pimcore-monitor": "^3.0.1",
"pimcore/admin-ui-classic-bundle": "^1.6.2",
"pimcore/pimcore": "~11.4.0",
"symfony/dotenv": "^6.4.13",
"symfony/runtime": "^6.4.14",
"symfony/webpack-encore-bundle": "^1.17.2"
},
"require-dev": {
"deployer/deployer": "^7.5.5",
"phpstan/phpstan": "^2.0.2",
"phpstan/phpstan-deprecation-rules": "^2.0.0",
"phpstan/phpstan-symfony": "^2.0.0",
"symplify/easy-coding-standard": "^12.3.6"
},
"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-scripts": [
"Pimcore\\Composer::clearCache",
"Pimcore\\Composer::installAssets"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony-assets-install": "relative"
},
"minimum-stability": "dev",
"prefer-stable": true
}