dinyangetoh/simple-taskmanager

A Laravel package that adds simple task management functionality to an app

1.0.5 2017-12-02 03:15 UTC

This package is not auto-updated.

Last update: 2025-06-08 09:24:10 UTC


README

This is a laravel package that adds task management functionality to web applications.

It supports Laravel 5.0 and later

Installation

PHP 5.4+ or HHVM 3.3+, and Composer are required.

To get the latest version of Laravel Taskmanager, simply add the following line to the require block of your composer.json file.

"dinyangetoh/simple-taskmanager": "dev-master"

You'll then need to run composer install or composer update to download it and have the autoloader updated.

If you are using Laravel 5.5 or later, the service provider auto discovery feature will load the required classes after installation otherwise, you need to register the service provider. Open up config/app.php and add the following to the providers key.

  • Dinyangetoh\SimpleTaskmanager\TaskManagerServiceProvider::class

Also, register the Facade like so:

'aliases' => [
    ...
    'Simpletaskmanager' => Dinyangetoh\SimpleTaskmanager\Facades\TaskManager::class,
    ...
]

Configuration

You need to run migrations to create necessary tables

php artisan migrate"

You can publish the configuration file using this command:

php artisan vendor:publish --tag=public

Then you are ready to get runnings. Just visit

http://{{site-url}}/tasks

Add task categories and tasks. Enjoy.

Developed with love from

David Inyangetoh @dinyangetoh

License

The MIT License (MIT). Please see License File for more information.