@@ -41,26 +41,32 @@ public function describeConfiguration(PluginConfigurationBuilderInterface $confi
41
41
$ configOptionsBuilder
42
42
->describeStringListOption (
43
43
'standard_paths ' ,
44
- 'Setting the installed standard paths as relative path to the project root dir. '
44
+ 'Setting the installed standard paths as relative path to the project root dir. ' ,
45
45
)
46
46
->isRequired ()
47
47
->withDefaultValue ([]);
48
48
$ configOptionsBuilder
49
49
->describeBoolOption (
50
50
'fix ' ,
51
- 'If given, the source will be fixed automatically with phpcbf '
51
+ 'If given, the source will be fixed automatically with phpcbf ' ,
52
52
)
53
53
->isRequired ()
54
54
->withDefaultValue (false );
55
55
$ configOptionsBuilder
56
56
->describeStringListOption (
57
57
'excluded ' ,
58
- 'List of excluded paths. '
58
+ 'List of excluded paths. ' ,
59
59
);
60
60
$ configOptionsBuilder
61
61
->describeStringListOption (
62
62
'excluded_sniffs ' ,
63
- 'List of excluded sniffs. '
63
+ 'List of excluded sniffs. ' ,
64
+ );
65
+
66
+ $ configOptionsBuilder
67
+ ->describeStringListOption (
68
+ 'autoload_paths ' ,
69
+ 'List of files to autoload relative to project directory ' ,
64
70
);
65
71
}
66
72
@@ -127,7 +133,7 @@ private function buildArguments(
127
133
function ($ path ) use ($ projectPath ): string {
128
134
return realpath ($ projectPath . '/ ' . $ path );
129
135
},
130
- $ standardPaths
136
+ $ standardPaths,
131
137
));
132
138
}
133
139
@@ -137,6 +143,33 @@ function ($path) use ($projectPath): string {
137
143
$ arguments [] = '--report-file= ' . $ tempFile ;
138
144
}
139
145
146
+ if ($ config ->has ('autoload_paths ' )) {
147
+ $ template = <<<'PHP'
148
+ <?php
149
+ declare(strict_types=1);
150
+
151
+ foreach (%s as $path) {
152
+ require_once $path;
153
+ }
154
+ PHP;
155
+ $ tmpFile = $ environment ->getUniqueTempFile ($ this , 'phpcs.bootstrap.php ' );
156
+ $ paths = array_unique (
157
+ array_map (
158
+ function (string $ path ) use ($ environment ): string {
159
+ $ file = $ environment ->getProjectConfiguration ()->getProjectRootPath () . '/ ' . $ path ;
160
+ if (! file_exists ($ file )) {
161
+ throw new RuntimeException ('Autoload file does not exist: ' . $ file );
162
+ }
163
+
164
+ return $ environment ->getProjectConfiguration ()->getProjectRootPath () . '/ ' . $ path ;
165
+ },
166
+ $ config ->getStringList ('autoload_paths ' )
167
+ ),
168
+ );
169
+ file_put_contents ($ tmpFile , sprintf ($ template , var_export ($ paths , true )));
170
+ $ arguments [] = '--bootstrap= ' . $ tmpFile ;
171
+ }
172
+
140
173
return array_merge ($ arguments , $ config ->getStringList ('directories ' ));
141
174
}
142
175
@@ -149,14 +182,14 @@ public function describeExecTask(
149
182
'phpcs ' ,
150
183
'PHP CodeSniffer by Squiz (http://www.squiz.net) ' ,
151
184
$ definitionBuilder ,
152
- $ environment
185
+ $ environment,
153
186
);
154
187
$ this ->describeApplication (
155
188
'phpcbf ' ,
156
189
'PHP Code Beautifier and Fixer ' ,
157
190
$ definitionBuilder ,
158
191
$ environment ,
159
- 'fix '
192
+ 'fix ' ,
160
193
);
161
194
}
162
195
0 commit comments