Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikeshiyan/process-builder
Builds command lines for symfony/process using magic methods.
https://github.com/mikeshiyan/process-builder
cmd composer exec oop php process shell
Last synced: about 1 month ago
JSON representation
Builds command lines for symfony/process using magic methods.
- Host: GitHub
- URL: https://github.com/mikeshiyan/process-builder
- Owner: mikeshiyan
- License: mit
- Created: 2019-06-16T14:57:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-16T15:18:41.000Z (over 5 years ago)
- Last Synced: 2024-05-20T18:49:12.949Z (8 months ago)
- Topics: cmd, composer, exec, oop, php, process, shell
- Language: PHP
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Process Builder
[![Build Status](https://travis-ci.org/mikeshiyan/process-builder.svg?branch=master)](https://travis-ci.org/mikeshiyan/process-builder)
Builds command lines for symfony/process using magic methods.
Best suited for use as a [Composer](https://getcomposer.org) library.
## Requirements
* PHP ≥ 7.1
* [symfony/process](https://github.com/symfony/process) ≥ 4.3## Installation
To add this library to your Composer project:
```
composer require shiyan/process-builder
```## Usage examples
Using the `ProcessBuilder` class:
```
use Shiyan\ProcessBuilder\ProcessBuilder;$ls = new ProcessBuilder('ls', '~');
print $ls('-la');$ls->chDir('../');
print $ls('-la');
```Using a class which extends the `BaseProcessBuilder`:
```
use Shiyan\ProcessBuilder\Example\Git;$git = new Git('/var/www');
if ($git->status('-z') != '') {
$git->add('--all');
$git->commit('-m', 'Some changes');
$git->push('origin', 'master');
}
```By default an underlying process runs automatically. This behavior can be
changed:
```
use Shiyan\ProcessBuilder\ProcessBuilder;$ls = new ProcessBuilder('ls');
$ls->setAutoRun(FALSE);
$process = $ls('-la');
```