DavidBadura b81cad6243 add priority
2015-02-06 17:05:29 +00:00
2015-02-06 17:05:29 +00:00
2015-02-06 17:05:29 +00:00
2015-02-05 20:41:03 +01:00
2015-02-05 20:41:03 +01:00
2015-02-05 20:41:03 +01:00
2015-02-05 14:24:24 +01:00
2015-02-05 20:41:03 +01:00
2015-02-06 14:26:04 +01:00

Taskwarrior PHP lib

Build Status

WOW

$tm = \DavidBadura\Taskwarrior\TaskManager::create();

$task = new \DavidBadura\Taskwarrior\Task();
$task->setDescription('program this lib');
$task->setProject('hobby');
$task->setDue(new \DateTime('tomorrow'));

$task->addTag('next'); // todo :D

$tm->save($task);

$tasks = $tm->filter('project:hobby'); // one task

$tm->done($task);

$tasks = $tm->filter('project:hobby'); // empty
Description
No description provided
Readme 7 MiB
Languages
PHP 99.6%
Shell 0.4%