brad-jones/robo-runner

This package is abandoned and no longer maintained. No replacement package was suggested.

A custom Robo Runner, that does not require an actual "RoboFile.php" just a class of your choosing.

v0.0.2 2016-02-25 01:16 UTC

This package is not auto-updated.

Last update: 2019-02-20 18:51:58 UTC


README

This is a custom Robo Runner, that does not require an actual "RoboFile.php" just a class of your choosing.

See: https://github.com/Codegyre/Robo/pull/242

If the above PR is merged, then this class will become redundant.

Installation:

composer require brad-jones/robo-runner

Example Usage:

// This class could be autoloaded for example.
class MyRoboClass
{
	// tasks...
}

// To run robo
(new Brads\Robo\Runner(MyRoboClass::class))->execute();