Made for roadmap.sh - Task tracker project, see more here Upvote the solution on roadmap https://roadmap.sh/projects/task-tracker/solutions?u=64e0c392ced78d29352ba6dd
If for whatever reason, you want to download this, all you need to do is have php installed and git
Clone the repo with git clone https://github.com/NotGhoull/php-task-tracker.git
and then cd into the directory cd php-task-tracker
.
To run it just use php main.php <command here>
running main.php
on its own will show you the help along with the help
command.
The program supports all the commands as shown in https://roadmap.sh/projects/task-tracker those being:
# Adding a new task
add <title>
# Updating and deleting tasks
update <id> <title>
delete <id>
# Marking tasks
mark-in-progress <id>
mark-done <id>
# listing
list
# Listing a catagory
list done
list todo
list in-progress