miguelsenne / task-manager
Task manager SDK
v1.0.0
2019-09-25 01:38 UTC
Requires
- php: ^7.2
- sinergi/token: ^0.1.0
Requires (Dev)
- fzaninotto/faker: ^1.8
- mockery/mockery: ^1.2
- phpunit/phpunit: ^7.5
- psy/psysh: @stable
- squizlabs/php_codesniffer: ^3.4
This package is auto-updated.
Last update: 2025-03-29 01:00:40 UTC
README
This is a package to manage tasks and projects.
We stored the data in memory as a database.
Requires PHP 7.2
Installation
You can install task manager using Composer:
composer require miguelsenne/task-manager
Getting started
Start by use
-ing the class and creating an instance with id project if you need access an project
use \miguelsenne\TaskManager\Models\Project; $Project = new Project();
Then, register an project
$result = $Project->store('New Project'); print_r($result);
Remove an project using the delete
method:
$project = new Project('5d8f83f6d1f2c9.59688033'); $result = $project->delete(); print_r($result);
Find an project using the find
method:
$project = new Project('5d8f83f6d1f2c9.59688033'); $result = $project->find(); print_r($result);
Clear all projects using the reset
method:
$project = new Project; $result = $project->reset(); print_r($result);
Tasks
Start by use
-ing the class and creating an instance with an project id
use miguelsenne\TaskManager\Models\Task; $task = new Task('5d8f83f6d1f2c9.59688033');
Then, register an task
$result = $task->store('New Task'); print_r($result);
Change progress of the task. The task, when created, starts with to do progress
$result = $task->changeProgress(); print_r($result);