2025-07-18 11:37:07 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Swagger\v1;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @OA\Info(
|
|
|
|
|
* version="1.0.0",
|
|
|
|
|
* title="SAM API Documentation",
|
|
|
|
|
* description="SAM(Semi-Automatics Management) API 입니다.",
|
|
|
|
|
* @OA\Contact(
|
|
|
|
|
* email="shine1324@gmail.com"
|
|
|
|
|
* )
|
|
|
|
|
* )
|
|
|
|
|
*
|
|
|
|
|
* @OA\Server(
|
|
|
|
|
* url=L5_SWAGGER_CONST_HOST,
|
|
|
|
|
* description=L5_SWAGGER_CONST_NAME
|
|
|
|
|
* )
|
2025-07-24 09:20:39 +09:00
|
|
|
*
|
|
|
|
|
* @OA\SecurityScheme(
|
|
|
|
|
* securityScheme="ApiKeyAuth",
|
|
|
|
|
* type="apiKey",
|
|
|
|
|
* in="header",
|
|
|
|
|
* name="X-API-KEY"
|
|
|
|
|
* )
|
|
|
|
|
* @OA\SecurityScheme(
|
|
|
|
|
* securityScheme="BearerAuth",
|
|
|
|
|
* type="http",
|
|
|
|
|
* scheme="bearer",
|
|
|
|
|
* bearerFormat="JWT"
|
|
|
|
|
* )
|
|
|
|
|
*
|
2025-07-18 11:37:07 +09:00
|
|
|
*/
|
|
|
|
|
class SAMInfo {}
|