PHPackages                             maxwellhealth/taskr - 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. maxwellhealth/taskr

ActiveLibrary

maxwellhealth/taskr
===================

taskr is a small PHP library that makes it easy to fork callbacks into child processes.

1.1.0(9y ago)128.8kMITPHP

Since Oct 4Pushed 9y ago10 watchersCompare

[ Source](https://github.com/maxwellhealth/taskr)[ Packagist](https://packagist.org/packages/maxwellhealth/taskr)[ RSS](/packages/maxwellhealth-taskr/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (8)Used By (0)

taskr
=====

[](#taskr)

[![Build Status](https://camo.githubusercontent.com/a3b2109d86504005a40d4f49793bd9161fbd4a3a412b27a18e5dc0c6c7f21f9e/68747470733a2f2f7472617669732d63692e6f72672f6d617877656c6c6865616c74682f7461736b722e737667)](https://travis-ci.org/maxwellhealth/taskr)

taskr is a small PHP library that makes it easy to fork callbacks into child processes.

### Compatibility

[](#compatibility)

PHP 5.4, 5.5, 5.6, and 7

### Quick Start

[](#quick-start)

Before running a task, we'll need to define a handler. The handler is what the task will use to do things like writing a log or setting data about the task. In the example below, we've implemented HandlerInterface by extending HandlerAbstract with our own handler that will use a flat file for logging and MongoDB for task data.

```
