Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/makhosi6/phprestapi
A minimalistic REST API built in PHP and MySQL. I noticed that nodejs is the go to technology/language to build a simple API. So i started this project as a way of finding out if PHP can be a great tool of bootstrapping a REST API. This project is built on top of WaterPipe, a routing framework and request and reponse handler for PHP. No authentication/authorization or any type of Access control has been implemented.
https://github.com/makhosi6/phprestapi
Last synced: 4 days ago
JSON representation
A minimalistic REST API built in PHP and MySQL. I noticed that nodejs is the go to technology/language to build a simple API. So i started this project as a way of finding out if PHP can be a great tool of bootstrapping a REST API. This project is built on top of WaterPipe, a routing framework and request and reponse handler for PHP. No authentication/authorization or any type of Access control has been implemented.
- Host: GitHub
- URL: https://github.com/makhosi6/phprestapi
- Owner: makhosi6
- License: mit
- Created: 2020-07-29T17:29:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-05T15:51:27.000Z (almost 4 years ago)
- Last Synced: 2024-11-08T20:12:09.271Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 96.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A minimalistic REST API built in PHP and MySQL. I noticed that nodejs is the go to technology/language to build a simple API. So i started this project as a way of finding out if PHP can be a great tool of bootstrapping a REST API. This project is built on top of [WaterPipe](https://github.com/ElementaryFramework/WaterPipe), a routing framework and request and reponse handler for PHP.
No authentication/authorization or any type of Access control has been implemented.*Available endpoints.*
````
GET /api/v1/users/list
GET /api/v1/users/list?id=0000
POST /api/v1/users
PUT/PATCH /api/v1/users/0000
DELETE /api/v1/users/0000GET /api/v1/jobs/list
GET /api/v1/jobs/list?id=0000
POST /api/v1/jobs
PUT/PATCH /api/v1/jobs/0000
DELETE /api/v1/jobs/0000