-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.56 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.56 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
{
"name": "clawrock/magento2-debug",
"description": "Magento 2 debug module based on Magento 1 Profiler with some extra features.",
"type": "magento2-module",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"require": {
"php": ">=8.1",
"magento/framework": "~103.0",
"magento/module-backend": "~102.0",
"magento/module-developer": "^100.4",
"filp/whoops": "^2.1",
"jdorn/sql-formatter": "^1.2",
"symfony/var-dumper": "*",
"symfony/stopwatch": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.30.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"magento/magento-coding-standard": "*",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.9.1",
"phpstan/phpstan": "~1.10.0",
"phpunit/phpunit": "~9.5.0",
"sebastian/phpcpd": "^6.0.3",
"slevomat/coding-standard": "~6.4.1",
"squizlabs/php_codesniffer": "~3.7.2",
"phpstan/phpstan-phpunit": "^1.1.1"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"ClawRock\\Debug\\": ""
}
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}