@@ -27,6 +27,7 @@ $this->taskComposerValidate()->run();
27
27
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
28
28
* ` buildCommand() ` Copy class fields into command options as directed.
29
29
* ` setOutput($output) ` Sets the Console Output.
30
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
30
31
* ` dir($dir) ` Changes working directory of command
31
32
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
32
33
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
@@ -68,6 +69,7 @@ $this->taskComposerConfig()->set('bin-dir', 'bin/')->run();
68
69
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
69
70
* ` buildCommand() ` Copy class fields into command options as directed.
70
71
* ` setOutput($output) ` Sets the Console Output.
72
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
71
73
* ` dir($dir) ` Changes working directory of command
72
74
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
73
75
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
@@ -110,6 +112,7 @@ $this->taskComposerCreateProject()->source('foo/bar')->target('myBar')->run();
110
112
* ` noScripts($disable = null) ` skip scripts
111
113
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
112
114
* ` setOutput($output) ` Sets the Console Output.
115
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
113
116
* ` dir($dir) ` Changes working directory of command
114
117
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
115
118
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
@@ -162,6 +165,7 @@ $this->taskComposerDumpAutoload('path/to/my/composer.phar')
162
165
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
163
166
* ` buildCommand() ` Copy class fields into command options as directed.
164
167
* ` setOutput($output) ` Sets the Console Output.
168
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
165
169
* ` dir($dir) ` Changes working directory of command
166
170
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
167
171
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
@@ -206,6 +210,7 @@ $this->taskComposerInit()->run();
206
210
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
207
211
* ` buildCommand() ` Copy class fields into command options as directed.
208
212
* ` setOutput($output) ` Sets the Console Output.
213
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
209
214
* ` dir($dir) ` Changes working directory of command
210
215
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
211
216
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
@@ -252,6 +257,7 @@ $this->taskComposerInstall('path/to/my/composer.phar')
252
257
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
253
258
* ` buildCommand() ` Copy class fields into command options as directed.
254
259
* ` setOutput($output) ` Sets the Console Output.
260
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
255
261
* ` dir($dir) ` Changes working directory of command
256
262
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
257
263
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
@@ -291,6 +297,7 @@ $this->taskComposerRemove()->run();
291
297
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
292
298
* ` buildCommand() ` Copy class fields into command options as directed.
293
299
* ` setOutput($output) ` Sets the Console Output.
300
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
294
301
* ` dir($dir) ` Changes working directory of command
295
302
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
296
303
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
@@ -328,6 +335,7 @@ $this->taskComposerRequire()->dependency('foo/bar', '^.2.4.8')->run();
328
335
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
329
336
* ` buildCommand() ` Copy class fields into command options as directed.
330
337
* ` setOutput($output) ` Sets the Console Output.
338
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
331
339
* ` dir($dir) ` Changes working directory of command
332
340
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
333
341
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
@@ -375,6 +383,7 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
375
383
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
376
384
* ` buildCommand() ` Copy class fields into command options as directed.
377
385
* ` setOutput($output) ` Sets the Console Output.
386
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
378
387
* ` dir($dir) ` Changes working directory of command
379
388
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
380
389
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
@@ -415,6 +424,7 @@ $this->taskComposerValidate()->run();
415
424
* ` workingDir($dir) ` adds ` --working-dir $dir ` option to composer
416
425
* ` buildCommand() ` Copy class fields into command options as directed.
417
426
* ` setOutput($output) ` Sets the Console Output.
427
+ * ` setProcessInput($input) ` Pass an input to the process. Can be resource created with fopen() or string
418
428
* ` dir($dir) ` Changes working directory of command
419
429
* ` arg($arg) ` Pass argument to executable. Its value will be automatically escaped.
420
430
* ` args($args) ` Pass methods parameters as arguments to executable. Argument values
0 commit comments