-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.6 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.6 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
56
57
58
59
60
61
62
{
"name": "webifycms/dev-tools",
"description": "Set of development tools to analyze and auto fix code standards, formatting and other stuffs for WebifyCMS packages.",
"license": "MIT",
"type": "webifycms-tool",
"authors": [
{
"name": "Mohammed Shifreen",
"email": "mshifreen@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.4",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^2.0",
"rector/rector": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"symfony/var-dumper": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^13",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Webify\\Tools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webify\\Tools\\Test\\": "test/"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"sniff": [
"php-cs-fixer fix --verbose --dry-run --diff --show-progress=dots"
],
"analyse": [
"phpstan"
],
"rector": [
"rector process --dry-run"
],
"rector-process": [
"rector process"
],
"test": [
"phpunit"
],
"code-check": ["@analyse", "@sniff"],
"code-format": [
"php-cs-fixer fix --verbose --show-progress=dots"
]
}
}