foreachq / task-manager
Task manager web-application
dev-main
2022-06-06 13:52 UTC
Requires
- php: ^8.0.2
- fakerphp/faker: ^1.19
- guzzlehttp/guzzle: ^7.2
- laracasts/flash: ^3.2
- laravel/framework: ^9.11
- laravel/sanctum: ^2.14.1
- laravel/tinker: ^2.7
- laravel/ui: ^3.4
- laravelcollective/html: ^6.3
Requires (Dev)
- mockery/mockery: ^1.4.4
- nunomaduro/collision: ^6.1
- phpunit/phpunit: ^9.5.10
- spatie/laravel-ignition: ^1.0
- squizlabs/php_codesniffer: *
This package is auto-updated.
Last update: 2025-03-06 19:50:52 UTC
README
Task Manager
«Task Manager» — a site where you can manage your tasks.
Demo
Project demo can be viewed here.
Description
Application is build in the form of a site where you can add tasks, assign performers, change task statuses and labels. Registration and authentication are required to work with the system.
Project features:
- Authentication, policy management;
- Multilingual support;
- Task statuses, labels and filtering;
- PostgreSQL storage for added entities, in-memory sqlite for tests;
- PHPUnit testing;
- Docker containerization for easy to run local instances.
Requirements
- docker-compose
Installation
- Download package
Using git clone:
git clone https://github.com/Foreachq/task-manager
Or using composer:
composer create-project foreachq/task-manager
- Setup project
make setup
- Run local instance
make up # starting on localhost:80
- Stop local instance
make down