Skip to content

Commit

Permalink
Robo release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Sep 5, 2020
1 parent aefe45b commit 0b2bc1b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
68 changes: 34 additions & 34 deletions docs/tasks/Composer.md
@@ -1,5 +1,39 @@
# Composer Tasks

## CheckPlatformReqs


Composer Check Platform Requirements

``` php
<?php
// simple execution
$this->taskComposerValidate()->run();
?>
```

* `preferDist($preferDist = null)` adds `prefer-dist` option to composer
* `preferSource()` adds `prefer-source` option to composer
* `dev($dev = null)` adds `dev` option to composer
* `noDev()` adds `no-dev` option to composer
* `ansi($ansi = null)` adds `ansi` option to composer
* `noAnsi()` adds `no-ansi` option to composer
* `interaction($interaction = null)` * `param bool` $interaction
* `noInteraction()` adds `no-interaction` option to composer
* `optimizeAutoloader($optimize = null)` adds `optimize-autoloader` option to composer
* `ignorePlatformRequirements($ignore = null)` adds `ignore-platform-reqs` option to composer
* `disablePlugins($disable = null)` disable plugins
* `noScripts($disable = null)` skip scripts
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `dir($dir)` Changes working directory of command
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `options(array $options, $separator = null)` Pass multiple options to executable. The associative array contains
* `optionList($option, $value = null, $separator = null)` Pass an option with multiple values to executable. Value can be a string or array.

## Config


Expand Down Expand Up @@ -378,37 +412,3 @@ $this->taskComposerValidate()->run();
* `options(array $options, $separator = null)` Pass multiple options to executable. The associative array contains
* `optionList($option, $value = null, $separator = null)` Pass an option with multiple values to executable. Value can be a string or array.

## CheckPlatformReqs


Composer CheckPlatformReqs

``` php
<?php
// simple execution
$this->taskComposerCheckPlatformReqs()->run();
?>
```

* `preferDist($preferDist = null)` adds `prefer-dist` option to composer
* `preferSource()` adds `prefer-source` option to composer
* `dev($dev = null)` adds `dev` option to composer
* `noDev()` adds `no-dev` option to composer
* `ansi($ansi = null)` adds `ansi` option to composer
* `noAnsi()` adds `no-ansi` option to composer
* `interaction($interaction = null)` * `param bool` $interaction
* `noInteraction()` adds `no-interaction` option to composer
* `optimizeAutoloader($optimize = null)` adds `optimize-autoloader` option to composer
* `ignorePlatformRequirements($ignore = null)` adds `ignore-platform-reqs` option to composer
* `disablePlugins($disable = null)` disable plugins
* `noScripts($disable = null)` skip scripts
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `dir($dir)` Changes working directory of command
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `options(array $options, $separator = null)` Pass multiple options to executable. The associative array contains
* `optionList($option, $value = null, $separator = null)` Pass an option with multiple values to executable. Value can be a string or array.

2 changes: 1 addition & 1 deletion src/Robo.php
Expand Up @@ -21,7 +21,7 @@
class Robo
{
const APPLICATION_NAME = 'Robo';
const VERSION = '2.2.0-dev';
const VERSION = '2.2.0';

/**
* The currently active container object, or NULL if not initialized yet.
Expand Down

0 comments on commit 0b2bc1b

Please sign in to comment.