yii2-openapi
yii2-openapi copied to clipboard
REST API application generator for Yii2, openapi 3.0 YAML -> Yii2
**x-db-type** will no longer be reformatted from now on. **x-db-type** is now the final entry in db. nullalble property is handled correctly. usecase ``` created_at: readOnly: true type: string format:...
Migrations for adding new columns should use "AFTER" keyword to make sure order of columns is the same as in schema.
```yaml Customer: description: customer is the one that orders a campaign type: object required: - id - name - created_at properties: id: type: integer name: type: string maxLength: 100 created_at:...
Hi, Can I generate only API stuffs using an existing database? I would hand craft OpenAPI spec but if the module can generate template OA spec will be also nice....
I have Open API model that represents a DB table ```yaml # del: title: Del x-table: del type: object required: - id - user # ... properties: id: type: integer...
I have use-case like below - GET /calendar/domains - get all domains. Domain here is model and DB table. `calendar` is just the prefix - GET /calendar/domains/{id} - get a...
Should we still keep the minimal php 7.1 version ? Even 7.2 already reach end of life
As of the [release of OpenAPI 3.1](https://github.com/OAI/OpenAPI-Specification/releases/tag/3.1.0-rc0) and OpenAPI Schema is now fully compatible with JSON Schema: > The Schema Object is now fully compliant with JSON Schema draft 2019-09...