Skip to content

Commit

Permalink
Robo release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Dec 29, 2017
1 parent 3ef672e commit b6296f1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions docs/tasks/Composer.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ $this->taskComposerConfig()->set('bin-dir', 'bin/')->run();
* `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
Expand Down Expand Up @@ -70,6 +71,7 @@ $this->taskComposerCreateProject()->source('foo/bar')->target('myBar')->run();
* `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
* `dir($dir)` Changes working directory of command
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
Expand Down Expand Up @@ -119,6 +121,7 @@ $this->taskComposerDumpAutoload('path/to/my/composer.phar')
* `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
Expand Down Expand Up @@ -161,6 +164,7 @@ $this->taskComposerInit()->run();
* `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
Expand Down Expand Up @@ -204,6 +208,7 @@ $this->taskComposerInstall('path/to/my/composer.phar')
* `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
Expand Down Expand Up @@ -241,6 +246,7 @@ $this->taskComposerRemove()->run();
* `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
Expand Down Expand Up @@ -275,6 +281,7 @@ $this->taskComposerRequire()->dependency('foo/bar', '^.2.4.8')->run();
* `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
Expand Down Expand Up @@ -318,6 +325,7 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
* `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
Expand Down Expand Up @@ -356,6 +364,7 @@ $this->taskComposerValidate()->run();
* `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
Expand Down
2 changes: 1 addition & 1 deletion src/Robo.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class Robo
{
const APPLICATION_NAME = 'Robo';
const VERSION = '1.2.1-dev';
const VERSION = '1.2.1';

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

0 comments on commit b6296f1

Please sign in to comment.