-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
44 lines (44 loc) · 1.04 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
{
"name": "oxid-community/moduleinternals",
"description": "Display module internals",
"type": "oxideshop-module",
"minimum-stability": "stable",
"keywords": [
"oxid",
"modules",
"admin",
"debug",
"oxid-module-internals"
],
"homepage": "https://github.com/OXIDprojects/oxid-module-internals",
"license": [
"GPL-3.0-only"
],
"require":{
"symfony/console" : "^2.7||^3.1||^4.0",
"composer/composer" : "^1.10.22",
"php": "^7.1",
"oxid-professional-services/lib-shop-switcher" : "^1.0.0"
},
"require-dev":{
"oxid-esales/oxideshop-ce" : ">=6.1",
"phpstan/phpstan-strict-rules" : "*",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-deprecation-rules" : "^0.12",
"consistence/coding-standard" : "*"
},
"extra": {
"oxideshop": {
"target-directory": "oxcom/moduleinternals",
"blacklist-filter": [
"C*/**/*",
".*"
]
}
},
"autoload": {
"psr-4": {
"OxidCommunity\\ModuleInternals\\": ""
}
}
}