-
Notifications
You must be signed in to change notification settings - Fork 0
/
My Plain PHP MVC OOP Framework API.postman_collection.json
67 lines (67 loc) · 2.15 KB
/
My Plain PHP MVC OOP Framework API.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"info": {
"_postman_id": "b75ee244-bbf8-48a9-8a98-9ca3b6c8b036",
"name": "My Plain PHP MVC OOP Framework API",
"description": "This is my personal backend Plain (vanilla) PHP Framework which follows the MVC Design Pattern (Model-View-Controller Architecture), and is entirely Object-oriented (OOP). This robust framework is made to mimic and be mostly similar to the famous Laravel framework. I promise you if you understand the inner workings of this framework, you'll very well understand how Laravel works under the hood. This project script is written entirely in plain PHP (OOP) and aims to demonstrate the implementation of an MVC framework imitating the well-known development market frameworks such as Laravel and CodeIgniter without relying on any external libraries or frameworks.\n\nFrontend technologies used: AJAX, jQuery, JavaScript and Bootstrap (Responsive Design/Mobile First Design).",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "28181483",
"_collection_link": "https://www.postman.com/ahmed-yahya/workspace/my-public-portfolio-postman-workspace/collection/28181483-b75ee244-bbf8-48a9-8a98-9ca3b6c8b036?action=share&source=collection_link&creator=28181483"
},
"item": [
{
"name": "Get All products - GET",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text",
"disabled": true
}
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "http://localhost:8000/api/products",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"products"
]
}
},
"response": []
},
{
"name": "Get a Single product - GET",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8000/api/products/79",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"products",
"79"
]
}
},
"response": []
}
]
}