forked from pimcore/generic-data-index-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.61 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.61 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
{
"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.3.0 || ~8.4.0 ",
"nesbot/carbon": "^3.8.4",
"pimcore/pimcore": "^12.3",
"pimcore/static-resolver-bundle": "^3.0",
"pimcore/opensearch-client": "^2.0",
"pimcore/elasticsearch-client": "^2.0",
"doctrine/orm": "^3.0",
"symfony/scheduler": "^6.4 || ^7.2"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"codeception/codeception": "^5.3.2",
"codeception/phpunit-wrapper": "^9",
"codeception/module-asserts": "^2",
"codeception/module-symfony": "^3.1.1",
"phpstan/phpstan": "1.12.15",
"phpstan/phpstan-symfony": "^1.2.20",
"phpunit/phpunit": "10.2.7",
"nyholm/psr7": "^1",
"symfony/phpunit-bridge": "^6",
"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/"
}
},
"extra": {
"branch-alias": {
"dev-2.x": "2.4.x-dev"
},
"pimcore": {
"bundles": [
"Pimcore\\Bundle\\GenericDataIndexBundle\\PimcoreGenericDataIndexBundle"
]
}
}
}