{"app_name":"Lumen Todo App add auth:api","version":"1.0.0","framework":"Lumen 10.x (Laravel Micro Framework)","description":"A lightweight RESTful API built with Lumen for managing todos and categories.","author":{"name":"Qiyamuddin Ahmadzai","email":"qiyam.ahmadzai@example.com","location":"Kabul, Afghanistan"},"features":["CRUD operations for Todos","Category-based organization","Status tracking (Pending, In Progress, Completed)","Due date management","RESTful JSON API responses"],"routes":{"GET \/api\/categories":"List all categories","POST \/api\/categories":"Create new category","GET \/api\/categories\/{id}":"Get category by ID","PUT \/api\/categories\/{id}":"Update category","DELETE \/api\/categories\/{id}":"Delete category","GET \/api\/todos":"List all todos (with categories)","POST \/api\/todos":"Create new todo","GET \/api\/todos\/{id}":"Get todo by ID","PUT \/api\/todos\/{id}":"Update todo","DELETE \/api\/todos\/{id}":"Delete todo"},"database_schema":{"categories":["id","name","created_at","updated_at"],"todos":["id","category_id","title","description","status","due_date","created_at","updated_at"]},"license":"MIT License","status":"Running"}