или тут http://starta-test.fvds.ru
- Клонируйте репозиторий
git clone https://github.com/denisAtm/starta_test_backend_php.git
Установите зависимости
composer install
Настройте файл окружения
Отредактируйте файл .env и укажите настройки для вашей базы данных и другие параметры.
Сгенерируйте ключ приложения
php artisan key:generate
Выполните миграции
php artisan migrate
curl -X GET http://starta-test.fvds.ru/tickets
curl -X GET http://starta-test.fvds.ru/tickets/{id}
curl -X PUT -H "Content-Type: application/json" -d '{"author_name":"Updated Author","description":"Updated description","status":"in_progress"}' http://starta-test.fvds.ru/tickets/1
curl -X PUT -H "Content-Type: application/json" -d '{"author_name":"Updated Author","description":"Updated description","status":"in_progress"}' http://starta-test.fvds.ru/tickets/1
curl -X DELETE http://starta-test.fvds.ru/tickets/1