-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.58 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.58 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
{
"name": "yevhenii-starychenko/opencart-debug",
"version": "2.2.2",
"description": "OpenCart 3 Debug Panel - Developer tool",
"type": "opencart-extension",
"license": "MIT",
"authors": [
{
"name": "Yevhenii Starychenko",
"email": "evgeniistarychenko@gmail.com",
"homepage": "https://t.me/evgeniistarychenko"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpmd/phpmd": "^2.15",
"sebastian/phpcpd": "^6.0",
"vimeo/psalm": "^5.0",
"enlightn/security-checker": "^1.0"
},
"scripts": {
"check-style": "phpcs --standard=phpcs.xml",
"fix-style": "phpcbf --standard=phpcs.xml",
"analyse": "phpstan analyse -c phpstan.neon --memory-limit=512M",
"phpmd": "phpmd upload text phpmd.xml --suffixes php",
"phpcpd": "phpcpd upload --fuzzy",
"psalm": "psalm --config=psalm.xml --no-cache",
"security": "security-checker security:check composer.lock",
"test": [
"@check-style",
"@analyse"
],
"test:all": [
"@check-style",
"@analyse",
"@phpmd",
"@phpcpd",
"@psalm"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}