2017 © Pedro Peláez
 

library shelly

Shelly is a small library that lets you abstract your shell commands using PHP.

image

abogdan/shelly

Shelly is a small library that lets you abstract your shell commands using PHP.

  • Friday, December 12, 2014
  • by abogdan
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Shelly

Shelly is a small library that lets you abstract your shell commands using PHP., (*1)

Version

0.1.0, (*2)

Installation

You need Composer to install the lib:, (*3)

"require": {
        ...
        "abogdan/shelly": "dev-master",
        ...
    },
composer require abogdan/shelly:dev-master

Examples

use ABogdan\Shelly\Command\CompositeCommand;
use ABogdan\Shelly\Command\SimpleCommand;
use ABogdan\Shelly\Builder;
use ABogdan\Shelly\Executor;
$seq = new \PhpCollection\Sequence();

//simple example
$cat = new SimpleCommand('cat', [__FILE__]);
$executor = new Executor(new Builder());
$output = $executor->execute($cat);

//composite example
$find = new SimpleCommand('find', ['./tests/', '-name', 'Command*'], true);
$cat = new SimpleCommand('cat');
$grep = new SimpleCommand('grep', ['-r', PHP_EOL]);
$seq->add($find);
$seq->add($cat);
$seq->add($grep);
$output = $executor->execute($complex);

Todo's

  • Windows support
  • Better error handling
  • Better binary/executable finder
  • Better building strategy
  • ...

License

MIT, (*4)

The Versions

12/12 2014

dev-master

9999999-dev https://github.com/abogdan/shelly

Shelly is a small library that lets you abstract your shell commands using PHP.

  Sources   Download

MIT

The Requires

 

by Bogdan Andritoiu

process shell pipe