An open API service indexing awesome lists of open source software.

https://github.com/uderline/openapi-php-attributes

Automatically render your OpenApi 3 file describing your PHP API using attributes
https://github.com/uderline/openapi-php-attributes

api api-rest attributes json json-schema openapi openapi3 php php8 renderer swagger

Last synced: 2 months ago
JSON representation

Automatically render your OpenApi 3 file describing your PHP API using attributes

Awesome Lists containing this project

README

          

# OpenAPI PHP Attributes Generator

This CLI Tool is able to generate an OpenApi JSON file description according to PHP attributes contained in your files.

## ⚠️ Missing something ?
Just open an issue saying what's missing ! Feel free to open a PR but we recommend opening an issue beforehand.

## Where to start ?
1 - Install the package openapi-php-attributes-generator with composer.

```bash
composer require uderline/openapi-php-attributes
```

2 - Describe your API by following this documentation: https://uderline.github.io/openapi-php-attributes/

3 - Generate the JSON file:
```bash
php ./vendor/bin/opag /src/files/project openapi.json
```

A new file called `openapi.json` has been generated !

## Example
```php
#[Controller]
class Controller {
#[
GET("/path/{id}", ["Tag1", "Tag2"], "Description of the method"),
Property(Type::STRING, "prop1", description: "Property description", enum: BackedEnum::class),
Property(Type::INT, "prop2", example: 1),
Property(Type::BOOLEAN, "prop3"),
Property(Type::REF, "prop4", ref: RefSchema::class)
Response(ref: SchemaName::class, description: "Response description")
]
public function get(#[Parameter("Parameter description")] int $id): JsonResponse {
// ...
}
}

enum BackedEnum: string
{
case VAL1: "val1";
case VAL2: "val2";
}

#[
Schema,
Property(Type::STRING, "Property 1"),
Property(Type::INT, "Property 2"),
]
class RefSchema
{
public string $property1;
public int $property2;
}
```

Will generate
```json
{
"paths": {
"/path/{id}": {
"post": {
"tags": [
"Tag1",
"Tag2"
],
"summary": "Description of the method",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Parameter description",
"required": true,
"schema": {
"type": "integer"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"prop1": {
"type": "string",
"description": "Property description",
"enum": [
"val1",
"val2"
]
},
"prop2": {
"type": "integer",
"description": ""
},
"prop3": {
"type": "boolean",
"description": ""
},
"prop4": {
"$ref": "#/components/schemas/RefSchema"
}
}
}
}
}
},
"responses": {
"200": {
"description": "Response description",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DummyComponent"
}
}
}
}
}
}
}
}
}
```