-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 1.87 KB
/
Copy pathcomposer.json
File metadata and controls
79 lines (79 loc) · 1.87 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": "pestphp/pest-plugin-rector",
"description": "Rector plugin for Pest",
"keywords": [
"php",
"framework",
"pest",
"unit",
"test",
"testing",
"plugin",
"rector"
],
"license": "MIT",
"authors": [
{
"name": "Punyapal Shah",
"email": "mrpunyapal@gmail.com"
},
{
"name": "Nuno Maduro",
"email": "enunomaduro@gmail.com"
}
],
"require": {
"php": "^8.4",
"rector/rector": "^2.6.1",
"symplify/rule-doc-generator-contracts": "^11.2"
},
"require-dev": {
"laravel/pao": "^1.1.3",
"laravel/pint": "^1.30.3",
"pestphp/pest": "^5.0.3",
"pestphp/pest-plugin-phpstan": "^5.0",
"phpstan/phpstan": "^2.2.7",
"symplify/rule-doc-generator": "^12.2.5"
},
"conflict": {
"pestphp/pest": "<5.0.0"
},
"autoload": {
"psr-4": {
"Pest\\Rector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true,
"platform-check": false
},
"scripts": {
"lint": [
"rector",
"pint --parallel"
],
"test:lint": [
"rector --dry-run",
"pint --test --parallel"
],
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --parallel",
"test": [
"Composer\\Config::disableProcessTimeout",
"@test:lint",
"@test:types",
"@test:unit"
],
"docs": "vendor/bin/rule-doc-generator generate src --output-file docs/rules.md --ansi"
}
}