OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
Examples
/
petstore-3.0
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:50 AM
rwxr-xr-x
📁
Controllers
-
08/07/2024 04:34:48 AM
rwxr-xr-x
📁
Models
-
08/07/2024 04:34:49 AM
rwxr-xr-x
📄
Petstore.php
1.37 KB
08/07/2024 04:34:25 AM
rw-r--r--
📄
Security.php
645 bytes
08/07/2024 04:34:25 AM
rw-r--r--
📄
petstore-3.0.yaml
18.52 KB
08/07/2024 04:34:25 AM
rw-r--r--
Editing: Security.php
Close
<?php /** * @license Apache 2.0 */ namespace OpenApi\Examples\Petstore30; use OpenApi\Annotations as OA; /** * @OA\SecurityScheme( * type="oauth2", * name="petstore_auth", * securityScheme="petstore_auth", * @OA\Flow( * flow="implicit", * authorizationUrl="http://petstore.swagger.io/oauth/dialog", * scopes={ * "write:pets": "modify pets in your account", * "read:pets": "read your pets", * } * ) * ) * @OA\SecurityScheme( * type="apiKey", * in="header", * securityScheme="api_key", * name="api_key" * ) */ class Security { }