-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreset.ts
211 lines (193 loc) · 7.01 KB
/
preset.ts
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
import { editFiles, executeCommand } from "@preset/core";
export default definePreset({
name: 'laravel-preset',
handler: async () => {
await extractTemplates({
title: 'Add all default files such as phpstan.neon, rector and .editorconfig',
from: 'base-php-config',
extractDotFiles: true,
});
await editFiles({
title: 'composer.json set to php ^8.3',
files: 'composer.json',
operations: [
{
type: 'edit-json',
merge: {
"require": {
"php": "^8.3",
},
},
},
],
});
await executeCommand({
title: 'Allow codesniffer to be installed as a composer plugin',
command: 'composer',
arguments: ['config', '--no-plugins', 'allow-plugins.dealerdirect/phpcodesniffer-composer-installer', 'true']
});
await installPackages({
title: 'Install dev packages',
for: 'php',
dev: true,
additionalArgs: ['--no-interaction'],
packages: [
'coddin-web/laravel-stubs',
'dg/bypass-finals',
'ergebnis/phpstan-rules',
'mockery/mockery',
'larastan/larastan',
'phpstan/phpstan-beberlei-assert',
'phpstan/phpstan-deprecation-rules',
'phpstan/phpstan-mockery',
'phpstan/phpstan-phpunit',
'phpstan/phpstan-strict-rules',
'phpunit/phpunit',
'rector/rector:dev-main',
'rregeer/phpunit-coverage-check',
'slevomat/coding-standard',
'squizlabs/php_codesniffer',
'thecodingmachine/phpstan-strict-rules',
],
});
await installPackages({
title: 'Install Laravel Data and \\Safe',
for: 'php',
dev: false,
packages: [
'spatie/laravel-data',
'thecodingmachine/safe',
],
});
await editFiles({
title: 'composer.json scripts',
files: 'composer.json',
operations: [
{
type: 'edit-json',
merge: {
"scripts": {
"phpcs": "phpcs --standard=./phpcs_codestyle.xml -n app config database routes tests",
"phpcs-fix": "phpcbf --standard=./phpcs_codestyle.xml -n app config database routes tests",
"phpstan": "phpstan analyse --memory-limit=6G",
"phpunit": "vendor/bin/phpunit -c phpunit.xml.dist",
"phpunitwcov": "XDEBUG_MODE=coverage vendor/bin/phpunit -c phpunit.xml.dist --coverage-html reports/ --coverage-clover coverage/clover.xml",
"phpcoverage": "coverage-check coverage/clover.xml 0",
"rector": " rector process database app",
"checkup": [
"@phpcs",
"@phpstan",
"@phpunitwcov",
"@phpcoverage"
],
"coveragecheck": [
"@phpunitwcov",
"@phpcoverage"
]
},
}
}
],
});
await executeCommand({
title: 'Run rector',
command: 'composer',
arguments: ['run', 'rector', '-n'],
});
await executeCommand({
title: 'Run phpcs fix',
command: 'composer',
arguments: ['run', 'phpcs-fix', '-n'],
ignoreExitCode: true,
});
await executeCommand({
title: 'Install stubs',
command: 'php',
arguments: ['artisan', 'coddin-stubs:install'],
});
await editFiles({
title: 'Newline in config/app.php',
files: [
'config/app.php',
],
operations: [{
type: 'add-line',
lines: [
"\r\n //This will be removed by the next command. We only need the newline.",
],
indent: 0,
position: 158,
}],
});
await executeCommand({
title: 'Remove useless boilerplate test files',
command: 'rm',
arguments: ['-rf', 'tests/**/ExampleTest.php'],
});
await editFiles({
title: 'Remove useless comments',
files: [
'app/Models/User.php',
'config/app.php',
'config/cache.php',
'database/factories/UserFactory.php',
'database/seeders/DatabaseSeeder.php',
],
operations: [
...Array(20).fill({
type: 'remove-line',
match: new RegExp('^\\s*//.*$', 'gm'),
}),
],
});
await editFiles({
title: 'Add HasFactory to User model',
files: 'app/Models/User.php',
operations: [
{
type: 'add-line',
lines: [
"/**",
" * @use HasFactory<UserFactory>",
" */",
],
indent: 4,
position: 10,
},
{
type: 'add-line',
lines: [
"use Database\\Factories\\UserFactory;",
],
indent: 0,
position: 4,
},
],
});
await executeCommand({
title: 'Run phpcs fix',
command: 'composer',
arguments: ['run', 'phpcs-fix', '-n'],
ignoreExitCode: true,
});
await executeCommand({
title: 'Add strict type declarations and latest final class definitions',
command: './final-strict-fix.sh',
});
await executeCommand({
title: 'Replace bootstrap/app.php with a new one pt.1',
command: 'rm',
arguments: ['bootstrap/app.php'],
});
await executeCommand({
title: 'Replace bootstrap/app.php with a new one pt.2',
command: 'cp',
arguments: ['overrides/bootstrap/app.php', 'bootstrap/app.php'],
});
await executeCommand({
title: 'Cleanup',
command: 'rm',
arguments: ['-rf', 'overrides', 'tests/Feature/ExampleTest.php', 'tests/Unit/ExampleTest.php', 'database/database.sqlite', 'phpunit.xml'],
});
},
})