real420og / test1

test

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Загрузка фикстур

bin/console doctrine:fixtures:load

Создание автора

POST http://127.0.0.1/author/create
Accept: application/json
Content-Type: application/json
Cache-Control: no-cache

{
  "name": "test"
}

Поиск книги

POST http://127.0.0.1/book/search
Accept: application/json
Content-Type: application/json
Cache-Control: no-cache

{
   "title": "test"
}

Создание книги

POST http://127.0.0.1/book/create
Accept: application/json
Content-Type: application/json
Cache-Control: no-cache
{
   "title": "test",
   "author": [ 
       "test1", "test2", 
   ] 
}

About

test


Languages

Language:PHP 98.8%Language:Dockerfile 0.9%Language:Shell 0.3%