Simple vanilla PHP CRUD application with mongoDB database with its mflix dataset that I use for my thesis about benchmarking REST API and GraphQL.
Use the package manager composer to install the required package.
composer install
This app provides the following endpoints:
GET /movies
: return all movies data with limit from query string (default: 10)POST /comments
: creates new commentPUT /comments/$id
: updates an existing commentDELETE /comments/$id
: deletes a comment
Below is another repository used for my thesis.