-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 loc) · 1.45 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
45
46
47
48
49
50
51
52
{
"name": "cyberspectrum/contao-debugger",
"description": "General purpose debugger integration for Contao",
"keywords": [
"contao",
"debugger"
],
"type": "contao-module",
"homepage": "http://www.cyberspectrum.de/",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "http://www.cyberspectrum.de",
"role": "Developer"
}
],
"require": {
"php": ">=5.3",
"contao/core": ">=3.1,<4.0.0",
"contao-community-alliance/composer-plugin": "~2.0",
"maximebf/debugbar": "~1.9"
},
"require-dev": {
"metamodels/php-coding-standard": "~2.0",
"pdepend/pdepend": "~2.0",
"phpunit/phpunit": "~3.7",
"sebastian/phpcpd": "~1.4",
"phploc/phploc": "~2.0",
"phpmd/phpmd": "~2.0",
"squizlabs/php_codesniffer": "~1.0",
"contao-community-alliance/build-system-tool-branch-alias-validation": "~1.0",
"contao-community-alliance/build-system": "~1.0"
},
"autoload": {
"psr-0": {
"CyberSpectrum\\ContaoDebugger\\": "src"
}
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/debug"
}
},
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "dev"
}