Download the PHP package areyi/taskmanager without Composer

On this page you can find all versions of the php package areyi/taskmanager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package taskmanager

TaskManager

A simple task manager for Laravel

TaskManager is a Laravel package which allows you to create projects, and create tasks. The package is in development stage for time being, and not ready for production uses.


Version

0.3.2

Requirements


Installation

Download the package as a zip, and then put it on /vendor folder.

Add the following line on your composer.json file, under the psr-4:

After that, register the TaskManagerServiceProvider in the /config/app.php file, under the providers array:

And in the same file, put the TaskManager alias under the aliases array:

And finally, run all the migration files


Usage

First, you must supply with the user_id (which you can get from your favourite authentication managers). This will make sure projects and tasks belongs to the right user.

1. To create a new project:

Try this:

which will return:

2. To create a new task:

You can straightaway creating a task without supplying the project_id if you have created a project before

or you can also chain them to create multiple tasks:

which will return:

and you can also create project and add tasks to it at the same time:

3. Get all projects:

To get all existing projects:

which will returns straightaway:

4. Get all tasks with specified project_id

To get all tasks assign to a project:

which returns:

5. Get the whole thing

You can also get all projects along with their tasks:

6. Delete a project

To delete a project (this will also delete all tasks under the same project):

7. Delete a task

To delete a task:

8. Mark a task as completed

To mark a task as completed:


Formatting

This is still under development! TaskManager is included with a powerful formatter, allowing you to edit or delete projects/tasks and complete a task on the run. The formatter is powered by AJAX.

1. Get all projects as list

To list all projects as a list

Result:

2. Get all tasks as list

To list all tasks under a project as a list

Result:


List of available routes

These are the available routes in the package:

Route Uses
GET /taskmanager/list/all List all projects and tasks
GET /taskmanager/list/projects List all projects
GET /taskmanager/list/project/{project_id} Get a project with the given project id
GET /taskmanager/list/tasks/{project_id} Get tasks associated with the project id
GET /taskmanager/delete/project/{project_id} Delete the project
GET /taskmanager/delete/task/{task_id} Delete the task
GET /taskmanager/complete/task/{task_id} Mark the task as completed

List of avaiable methods

These are the methods in the package:

Method Uses
TaskManager::setUserId($userId); Set the ownership for all projects and tasks
TaskManager::addProject($project_details); Create a new project
TaskManager::addTask($task_details); Add a new task
TaskManager::getProjects(); Get all projects
TaskManager::getProject($project_id); Get a project by given project_id
TaskManager::getTasks(); Get all tasks
TaskManager::getTask($project_id); Get a task by given project_id
TaskManager::getAll(); Get all projects and their tasks
TaskManager::deleteProject($projectId); Delete a project
TaskManager::deleteTask($taskId); Delete a task
TaskManager::completeTask($taskId); Mark a task as done
TaskManager::format(); (todo)

Todos


License

BSD 3-Clause

Contributions

Feel free to contribute to the project! It will be much appriciated! And most importantly, its a Free Software, Hell Yeah!


All versions of taskmanager with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
illuminate/support Version ~5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package areyi/taskmanager contains the following files

Loading the files please wait ....