Go to file
DavidBadura 91e3fa947b update readme (travis) 2015-02-05 20:47:39 +01:00
src first draft 2015-02-05 20:41:03 +01:00
tests first draft 2015-02-05 20:41:03 +01:00
.gitignore first draft 2015-02-05 20:41:03 +01:00
.travis.yml first draft 2015-02-05 20:41:03 +01:00
LICENSE Initial commit 2015-02-05 14:24:24 +01:00
README.md update readme (travis) 2015-02-05 20:47:39 +01:00
composer.json first draft 2015-02-05 20:41:03 +01:00
phpunit.xml.dist first draft 2015-02-05 20:41:03 +01:00

README.md

Taskwarrior

Build Status

$tw = new \DavidBadura\Taskwarrior\Taskwarrior();

$task = new \DavidBadura\Taskwarrior\Task();
$task->addTag('home');

$tw->save($task);

$tasks = $tw->filter('+home');