-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 1.82 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 1.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "wundii/phplint",
"description": "This tool is the fast way, to checks the syntax of your PHP files.",
"keywords": ["phplint","lint","syntax","dev"],
"license": "MIT",
"authors": [
{
"name": "Andreas Wunderwald",
"email": "wundii@gmail.com"
}
],
"bin": [
"bin/phplint"
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"symfony/cache": "^6.4 || ^7.0 || ^8.0",
"symfony/config": "^6.4 || ^7.0 || ^8.0",
"symfony/console": "^6.4 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
"symfony/finder": "^6.4 || ^7.0 || ^8.0",
"symfony/process": "^6.4 || ^7.0 || ^8.0",
"webmozart/assert": "^2.3"
},
"require-dev": {
"phpstan/phpstan": "2.1.50",
"phpstan/phpstan-strict-rules": "2.0.10",
"phpunit/phpunit": "11.5.50",
"rector/rector": "2.4.1",
"symfony/var-dumper": "7.4.0 || 8.0.0",
"symplify/easy-coding-standard": "13.0.4"
},
"autoload": {
"psr-4": {
"Wundii\\PHPLint\\": "src/"
}
},
"scripts": {
"auto-scripts": {
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"complete-check": [
"@cache-clear",
"@rector-dry",
"@phpstan",
"@ecs-dry",
"@unittest"
],
"rector-dry": [
"php vendor/bin/rector process --dry-run --ansi"
],
"rector-apply": [
"php vendor/bin/rector process --ansi"
],
"ecs-dry": [
"php vendor/bin/ecs check"
],
"ecs-apply": [
"php vendor/bin/ecs check --fix"
],
"phpstan": [
"php vendor/bin/phpstan analyse"
],
"unittest": [
"php vendor/bin/phpunit --configuration phpunit.xml"
],
"cache-clear": [
"rm -R ./cache/* -f"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}