-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 824 Bytes
/
composer.json
File metadata and controls
36 lines (35 loc) · 824 Bytes
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
{
"name": "pimcore/system-info-bundle",
"license": "proprietary",
"type": "pimcore-bundle",
"description": "Pimcore System Info & Tools Bundle that provides additional tools for checking System information.",
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "~8.3.0 || ~8.4.0",
"pimcore/pimcore": "^12.3",
"amnuts/opcache-gui": "^3.0.1"
},
"require-dev": {
"phpstan/phpstan": "1.12.15",
"phpstan/phpstan-symfony": "^1.3.5"
},
"autoload": {
"psr-4": {
"Pimcore\\Bundle\\SystemInfoBundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-2.x": "2.2.x-dev"
},
"pimcore": {
"bundles": [
"Pimcore\\Bundle\\SystemInfoBundle\\PimcoreSystemInfoBundle"
]
}
}
}