-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.7 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.7 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
{
"name": "pimcore/generic-data-index-bundle",
"license": "proprietary",
"type": "pimcore-bundle",
"description": "Pimcore Generic data index 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.4.0 || ~8.5.0 ",
"nesbot/carbon": "^3.8.4",
"pimcore/pimcore": "^2026.1",
"pimcore/static-resolver-bundle": "^2026.1",
"pimcore/opensearch-client": "^2026.1.1",
"pimcore/elasticsearch-client": "^2026.1",
"doctrine/orm": "^3.0",
"doctrine/dbal": "^4.4",
"symfony/scheduler": "^7.2"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"codeception/codeception": "^5.3.5",
"codeception/module-asserts": "^3.0",
"codeception/module-symfony": "^3.7.1",
"codeception/stub": "^4.3",
"phpstan/phpstan": "2.1.40",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^12.5.23 || ^13.1.7",
"nyholm/psr7": "^1",
"symfony/phpunit-bridge": "^7",
"fakerphp/faker": "^1.23",
"friendsofphp/php-cs-fixer": "^3.4"
},
"autoload": {
"psr-4": {
"Pimcore\\Bundle\\GenericDataIndexBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pimcore\\Bundle\\GenericDataIndexBundle\\Tests\\": "tests/"
},
"files": [
"kernel/Kernel.php"
]
},
"extra": {
"branch-alias": {
"dev-2026.x": "2026.1.x-dev"
},
"pimcore": {
"bundles": [
"Pimcore\\Bundle\\GenericDataIndexBundle\\PimcoreGenericDataIndexBundle"
]
}
}
}