PHPackages                             eserozvataf/scabbia2-tasks - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. eserozvataf/scabbia2-tasks

AbandonedArchivedLibrary[CLI &amp; Console](/categories/cli)

eserozvataf/scabbia2-tasks
==========================

Scabbia2 Tasks Component

v0.1.7(10y ago)1118Apache-2.0PHPPHP &gt;=5.6.0

Since Sep 24Pushed 10y ago1 watchersCompare

[ Source](https://github.com/eserozvataf/scabbia2-tasks)[ Packagist](https://packagist.org/packages/eserozvataf/scabbia2-tasks)[ Docs](http://www.scabbiafw.com/)[ RSS](/packages/eserozvataf-scabbia2-tasks/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

Scabbia2 Tasks Component
========================

[](#scabbia2-tasks-component)

[This component](https://github.com/eserozvataf/scabbia2-tasks) provides an command line tool named `scabbia` and `Scabbia\Tasks\TaskBase` base class to help users create specific tasks with them. These tasks can be started in source code or command line.

[![Build Status](https://camo.githubusercontent.com/880a03698305eb7c598c28e677e809874da78689b60e178bb52c772719c23f50/68747470733a2f2f7472617669732d63692e6f72672f657365726f7a76617461662f73636162626961322d7461736b732e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/eserozvataf/scabbia2-tasks)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/19e225edb2f3e64d7dc6ad238803dc2aac79b2b50b0d8e99b30515436f5571f1/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f657365726f7a76617461662f73636162626961322d7461736b732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/eserozvataf/scabbia2-tasks/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/5f6f6015b593c8756cc896ff0ea074056c32729e8565728638bd5955b247e0d0/68747470733a2f2f706f7365722e707567782e6f72672f657365726f7a76617461662f73636162626961322d7461736b732f646f776e6c6f6164732e706e67)](https://packagist.org/packages/eserozvataf/scabbia2-tasks)[![Latest Stable Version](https://camo.githubusercontent.com/d537f61aa4dfb88adf0b241435ded6780aa95ce1b0edf34dc808af4b8d2c0e87/68747470733a2f2f706f7365722e707567782e6f72672f657365726f7a76617461662f73636162626961322d7461736b732f762f737461626c65)](https://packagist.org/packages/eserozvataf/scabbia2-tasks)[![Latest Unstable Version](https://camo.githubusercontent.com/32a4b22756153961b58cc4298261725c0e2a81d11a3cbd22bcb50c082b2253e2/68747470733a2f2f706f7365722e707567782e6f72672f657365726f7a76617461662f73636162626961322d7461736b732f762f756e737461626c65)](https://packagist.org/packages/eserozvataf/scabbia2-tasks)[![Documentation Status](https://camo.githubusercontent.com/1ebeb3aa2c5cce31b6bf29a03a59cd40727e8fe235ba9ca28824ef1330a81328/68747470733a2f2f72656164746865646f63732e6f72672f70726f6a656374732f73636162626961322d646f63756d656e746174696f6e2f62616467652f3f76657273696f6e3d6c6174657374)](https://readthedocs.org/projects/scabbia2-documentation)

Usage
-----

[](#usage)

### Custom Task

[](#custom-task)

```
namespace MyProject;

use Scabbia\Tasks\TaskBase;
use Scabbia\Formatters\FormatterInterface;

class MyTaskTask extends TaskBase {
    public function executeTask(array $parameters, FormatterInterface $formatter) {
        $formatter->write('task is executed, with parameters:');
        $formatter->writeArray($parameters);
    }

    public function help(FormatterInterface $formatter) {
        $formatter->write('help');
    }
}
```

`scabbia myProject:myTask` command will execute your task. Also `scabbia help myProject:myTask` displays the help you've provided.

You can also create your custom command line app, just refer to `vendor/bin/scabbia`.

### Running Tasks at Runtime

[](#running-tasks-at-runtime)

```
use Scabbia\Tasks\Tasks;

Tasks::run('myProject:myTask', ['parameter1', 'parameter2']);
```

### Registering namespaces for commands

[](#registering-namespaces-for-commands)

```
use Scabbia\Tasks\Tasks;

Tasks::$namespaces[] = 'MyProject';
```

Therefore `scabbia myTask` will be sufficent to execute your task.

Links
-----

[](#links)

- [List of All Scabbia2 Components](https://github.com/eserozvataf/scabbia2)
- [Documentation](https://readthedocs.org/projects/scabbia2-documentation)
- [Twitter](https://twitter.com/eserozvataf)
- [Contributor List](contributors.md)
- [License Information](LICENSE)

Contributing
------------

[](#contributing)

It is publicly open for any contribution. Bugfixes, new features and extra modules are welcome. All contributions should be filed on the [eserozvataf/scabbia2-tasks](https://github.com/eserozvataf/scabbia2-tasks) repository.

- To contribute to code: Fork the repo, push your changes to your fork, and submit a pull request.
- To report a bug: If something does not work, please report it using GitHub issues.
- To support: [![Donate](https://camo.githubusercontent.com/630a83896c8ab4a5af0f79046098e3d8713112304fd119d86fa5957a0ecc5159/68747470733a2f2f696d672e736869656c64732e696f2f67726174697061792f657365726f7a76617461662e737667)](https://gratipay.com/eserozvataf/)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3883d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ad4a7ec4c200bd6939df5aac1149f7d8d95aa5b8730a2276981f449c0c12fb18?d=identicon)[eserozvataf](/maintainers/eserozvataf)

---

Top Contributors

[![eser](https://avatars.githubusercontent.com/u/866558?v=4)](https://github.com/eser "eser (21 commits)")

---

Tags

Taskscommandsscabbialarukediscabbia2scabbiafw

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/eserozvataf-scabbia2-tasks/health.svg)

```
[![Health](https://phpackages.com/badges/eserozvataf-scabbia2-tasks/health.svg)](https://phpackages.com/packages/eserozvataf-scabbia2-tasks)
```

###  Alternatives

[aplus/cli

Aplus Framework CLI Library

2301.7M6](/packages/aplus-cli)[jaz303/phake

A wee clone of Ruby's rake for PHP 5.3. Uses closures for ultimate coolness.

362209.9k7](/packages/jaz303-phake)[vova07/yii2-console-runner-extension

An extension for running console commands on background in Yii framework.

88202.2k2](/packages/vova07-yii2-console-runner-extension)[stepanenko3/nova-command-runner

Laravel Nova tool for running Artisan and bash(shell) commands.

36983.0k](/packages/stepanenko3-nova-command-runner)[tomatophp/filament-artisan

Simple but yet powerful library for running some artisan commands for FilamentPHP

3269.1k1](/packages/tomatophp-filament-artisan)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
