/php-rest

Simple vanilla PHP CRUD application with mongoDB database with its mflix dataset that I use for my thesis about benchmarking REST API and GraphQL.

Primary LanguagePHP

PHP REST

Simple vanilla PHP CRUD application with mongoDB database with its mflix dataset that I use for my thesis about benchmarking REST API and GraphQL.

Installation

Use the package manager composer to install the required package.

composer install

Usage

This app provides the following endpoints:

  • GET /movies: return all movies data with limit from query string (default: 10)
  • POST /comments: creates new comment
  • PUT /comments/$id: updates an existing comment
  • DELETE /comments/$id: deletes a comment

Related Repository

Below is another repository used for my thesis.