-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.5 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "pimcore/studio-ui-bundle",
"license": "proprietary",
"type": "pimcore-bundle",
"description": "Pimcore Studio Ui Bundle",
"config": {
"discard-changes": true,
"sort-packages": true,
"preferred-install": {
"pimcore/pimcore": "source",
"*": "dist"
},
"allow-plugins": {
"php-http/discovery": false
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"pimcore/pimcore": "^12.0 || ^2026.1",
"pimcore/studio-backend-bundle": "^0.15.17 || ^1.0 || ^2026.1"
},
"require-dev": {
"codeception/codeception": "^5.0.10",
"codeception/phpunit-wrapper": "^9",
"codeception/module-asserts": "^2",
"codeception/module-symfony": "^3.1.1",
"phpstan/phpstan": "2.1.26",
"phpstan/phpstan-symfony": "^2.0.2",
"phpunit/phpunit": "^10.5.63",
"nyholm/psr7": "^1",
"symfony/phpunit-bridge": "^6",
"fakerphp/faker": "^1.23"
},
"conflict": {
"pimcore/asset-metadata-class-definitions": "<3.0.1",
"pimcore/quill-bundle": "<2.0.1"
},
"autoload": {
"psr-4": {
"Pimcore\\Bundle\\StudioUiBundle\\": "src/",
"Pimcore\\": "core-extension/Pimcore/"
}
},
"autoload-dev": {
"psr-4": {
"Pimcore\\Bundle\\StudioUiBundle\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-1.x": "2026.1.x-dev"
},
"pimcore": {
"bundles": [
"Pimcore\\Bundle\\StudioUiBundle\\PimcoreStudioUiBundle"
]
}
}
}