dinyangetoh / simple-taskmanager
A Laravel package that adds simple task management functionality to an app
Installs: 61
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:CSS
Requires
- php: ^5.4.0|^7.0
Requires (Dev)
- mockery/mockery: >=0.7.2
- phpunit/phpunit: 4.*
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.