Skip to content

freemansdev/todo-api-slim4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6ea5701 · Jul 6, 2020

History

3 Commits
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020
Jul 6, 2020

Repository files navigation

Todo API (Slim Framework 4)

Simple todo API

Required

  • Docker
  • docker-compose

Run the Application

> make up
> make migrate

After that, API is available at http://localhost:8080

Run this command in the application directory to run the test suite, make sure Application is running

> make test

API

Please see the Application routes app/routes.php

Projects

Get all projects

> http http://localhost:8080/projects

Create a project

> http -f POST http://localhost:8080/projects name=test

Edit the project

> http -f PUT http://localhost:8080/projects/1 name=test1

Remove the project

> http DELETE http://localhost:8080/projects/1

Tasks

Get all tasks

> http http://localhost:8080/tasks

Create a task

> http -f POST http://localhost:8080/tasks name=test description=test-task project=1 'tag[]'=tag1 'tag[]'=tag2

Edit the task

> http -f PUT http://localhost:8080/tasks/1 name=test1

Remove the task

> http DELETE http://localhost:8080/tasks/1

The http tool

That's it!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published