Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Robo Laravel Package

consolidation/robo

Robo is a modern PHP task runner for automating common development workflows. Define tasks in a RoboFile with a clean OO API to run tests, build assets, deploy, and more. Extensible via plugins, with useful built-in tasks and CLI tooling.

View on GitHub
Deep Wiki
Context7

Vcs Tasks

GitStack

Runs Git commands in stack. You can use stopOnFail() to point that stack should be terminated on first fail.

<?php
$this->taskGitStack()
 ->stopOnFail()
 ->add('-A')
 ->commit('adding everything')
 ->push('origin','master')
 ->tag('0.6.0')
 ->push('origin','0.6.0')
 ->run()

$this->taskGitStack()
 ->stopOnFail()
 ->add('doc/*')
 ->commit('doc updated')
 ->push()
 ->run();
?>
  • cloneRepo($repo, $to = null, $branch = null)

  • param string $repo

  • cloneShallow($repo, $to = null, $branch = null, $depth = null)

  • param string $repo

  • add($pattern)

  • param string $pattern

  • commit($message, $options = null)

  • param string $message

  • pull($origin = null, $branch = null)

  • param string $origin

  • push($origin = null, $branch = null)

  • param string $origin

  • merge($branch)

  • param string $branch

  • checkout($branch)

  • param string $branch

  • tag($tag_name, $message = null)

  • param string $tag_name

  • executable($executable)

  • param string $executable

  • exec($command)

  • param string|string[]|CommandInterface $command

  • stopOnFail($stopOnFail = null)

  • param bool $stopOnFail

  • result($result)

  • param $result

  • setProcessInput($input)

  • param resource|string $input

  • dir($dir)

  • param string $dir

  • setOutput($output)

  • param \Symfony\Component\Console\Output\OutputInterface $output

HgStack

Runs hg commands in stack. You can use stopOnFail() to point that stack should be terminated on first fail.

<?php
$this->hgStack
 ->cloneRepo('https://bitbucket.org/durin42/hgsubversion')
 ->pull()
 ->add()
 ->commit('changed')
 ->push()
 ->tag('0.6.0')
 ->push('0.6.0')
 ->run();
?>
  • cloneRepo($repo, $to = null)

  • param string $repo

  • add($include = null, $exclude = null)

  • param string $include

  • commit($message, $options = null)

  • param string $message

  • pull($branch = null)

  • param string $branch

  • push($branch = null)

  • param string $branch

  • merge($revision = null)

  • param string $revision

  • tag($tag_name, $message = null)

  • param string $tag_name

  • executable($executable)

  • param string $executable

  • exec($command)

  • param string|string[]|CommandInterface $command

  • stopOnFail($stopOnFail = null)

  • param bool $stopOnFail

  • result($result)

  • param $result

  • setProcessInput($input)

  • param resource|string $input

  • dir($dir)

  • param string $dir

  • setOutput($output)

  • param \Symfony\Component\Console\Output\OutputInterface $output

SvnStack

Runs Svn commands in stack. You can use stopOnFail() to point that stack should be terminated on first fail.

<?php
$this->taskSvnStack()
 ->checkout('http://svn.collab.net/repos/svn/trunk')
 ->run()

// alternatively
$this->_svnCheckout('http://svn.collab.net/repos/svn/trunk');

$this->taskSvnStack('username', 'password')
 ->stopOnFail()
 ->update()
 ->add('doc/*')
 ->commit('doc updated')
 ->run();
?>
  • update($path = null)

  • param string $path

  • add($pattern = null)

  • param string $pattern

  • commit($message, $options = null)

  • param string $message

  • checkout($branch)

  • param string $branch

  • executable($executable)

  • param string $executable

  • exec($command)

  • param string|string[]|CommandInterface $command

  • stopOnFail($stopOnFail = null)

  • param bool $stopOnFail

  • result($result)

  • param $result

  • setProcessInput($input)

  • param resource|string $input

  • dir($dir)

  • param string $dir

  • setOutput($output)

  • param \Symfony\Component\Console\Output\OutputInterface $output

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
davejamesmiller/laravel-breadcrumbs
artisanry/parsedown
christhompsontldr/phpsdk
enqueue/dsn
bunny/bunny
enqueue/test
enqueue/null
enqueue/amqp-tools
milesj/emojibase
bower-asset/punycode
bower-asset/inputmask
bower-asset/jquery
bower-asset/yii2-pjax
laravel/nova
spatie/laravel-mailcoach
spatie/laravel-superseeder
laravel/liferaft
nst/json-test-suite
danielmiessler/sec-lists
jackalope/jackalope-transport