DavidBadura a58ceedefc add tags
2015-02-06 17:31:13 +00:00
2015-02-06 17:31:13 +00:00
2015-02-06 17:31:13 +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 17:31:13 +00:00

Taskwarrior PHP lib

Build Status

WOW

use DavidBadura\Taskwarrior\TaskManager;
use DavidBadura\Taskwarrior\Task;

$tm = TaskManager::create();

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

$task->addTag('next');

$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%