-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.76 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.76 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
54
55
{
"name": "mechemsi/static-rules",
"description": "Centralized static analysis configuration with PHPStan, PHPMD, PHPCS, and PHP Insights",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Mechemsi\\StaticRules\\": "src/",
"Mechemsi\\StaticRules\\Scripts\\": "scripts/"
}
},
"authors": [
{
"name": "Dominykas",
"email": "dominykas.vilipas@gmail.com"
}
],
"require": {
"php": ">=8.2",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"squizlabs/php_codesniffer": "^3.0",
"doctrine/coding-standard": "^13.0",
"slevomat/coding-standard": "^8.15",
"mayflower/mo4-coding-standard": "^10.0",
"nunomaduro/phpinsights": "^2.11",
"roave/security-advisories": "dev-master"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"phpstan": "phpstan analyse",
"phpmd": "phpmd src,tests text phpmd.xml",
"phpcs": "phpcs",
"insights": "phpinsights",
"analyse": [
"@phpstan",
"@phpmd",
"@phpcs"
],
"install-hooks": "Mechemsi\\StaticRules\\Scripts\\InstallHooks::install",
"uninstall-hooks": "Mechemsi\\StaticRules\\Scripts\\InstallHooks::uninstall"
}
}