1
0

Initial Laravel 12 API Project

This commit is contained in:
Wian Drs
2026-06-16 23:58:35 +07:00
commit ce7e7b79a4
65 changed files with 12010 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
{
"openapi": "3.0.0",
"info": {
"title": "Services Core API",
"description": "API Backend Services Core",
"version": "1.0.0"
},
"servers": [
{
"url": "http://127.0.0.1:8000",
"description": "Local Development Server"
}
],
"paths": {
"/api/login": {
"post": {
"tags": [
"Authentication"
],
"summary": "Login User",
"operationId": "a3b306d14572d1f4bd6c064b3233e7b8",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"required": [
"email",
"password"
],
"properties": {
"email": {
"type": "string",
"example": "admin@test.com"
},
"password": {
"type": "string",
"example": "123456"
}
},
"type": "object"
}
}
}
},
"responses": {
"200": {
"description": "Login Success"
}
}
}
}
},
"tags": [
{
"name": "Authentication",
"description": "Authentication"
}
]
}
+4
View File
@@ -0,0 +1,4 @@
*
!private/
!public/
!.gitignore
+2
View File
@@ -0,0 +1,2 @@
*
!.gitignore
+2
View File
@@ -0,0 +1,2 @@
*
!.gitignore
+9
View File
@@ -0,0 +1,9 @@
compiled.php
config.php
down
events.scanned.php
maintenance.php
routes.php
routes.scanned.php
schedule-*
services.json
+3
View File
@@ -0,0 +1,3 @@
*
!data/
!.gitignore
+2
View File
@@ -0,0 +1,2 @@
*
!.gitignore
+2
View File
@@ -0,0 +1,2 @@
*
!.gitignore
+2
View File
@@ -0,0 +1,2 @@
*
!.gitignore
+2
View File
@@ -0,0 +1,2 @@
*
!.gitignore
+2
View File
@@ -0,0 +1,2 @@
*
!.gitignore