tsydenov / symfony-crud

Simple CRUD application based on Symfony 6

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to start the application:

  • Start the containers

docker compose up -d

  • Install the application dependencies

docker compose exec php composer install

  • Run the migrations

docker compose exec php php bin/console doctrine:migrations:migrate

API

Create user

POST /users/new

Show user by id

GET /users/{id}

Show all users

GET /users

Update user by id

PATCH /users/{id}

Delete user by id

DELETE /users/{id}

About

Simple CRUD application based on Symfony 6


Languages

Language:PHP 91.3%Language:Dockerfile 8.7%