swaggest / swac
Swagger/OpenAPI code generator
Installs: 88
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 2
Forks: 3
Open Issues: 7
Type:tool
Requires
- ext-json: *
- bramus/monolog-colored-line-formatter: ^2.0
- monolog/monolog: ^1.23
- php-yaoi/php-yaoi: ^1
- psr/http-message: ^1.0
- swaggest/code-builder: ^0.3.8
- swaggest/go-code-builder: ^0.4.50
- swaggest/json-cli: ^v1.11.2
- swaggest/json-schema: ^0.12.36
- swaggest/php-code-builder: ^0.2.42
- swaggest/rest-client: ^0.1
- swaggest/swagger2-schema: ^0.2.3
- symfony/yaml: ^3
Requires (Dev)
- php: ^5.6|^7
- guzzlehttp/guzzle: ^6.5.5
- phperf/phpunit: ^4.8.38
- dev-master
- v0.1.35
- v0.1.34
- v0.1.33
- v0.1.32
- v0.1.31
- v0.1.30
- v0.1.29
- v0.1.28
- v0.1.27
- v0.1.26
- v0.1.25
- v0.1.24
- v0.1.23
- v0.1.22
- v0.1.21
- v0.1.20
- v0.1.19
- v0.1.18
- v0.1.17
- v0.1.16
- v0.1.15
- v0.1.14
- v0.1.13
- v0.1.12
- v0.1.11
- v0.1.10
- v0.1.9
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- v0.0.2
- v0.0.1
- dev-dependabot/composer/guzzlehttp/psr7-1.9.1
This package is auto-updated.
Last update: 2024-10-19 19:16:09 UTC
README
A tool to render API spec as code.
Installation
Phar
Download swac
from releases page.
Docker
docker run --rm swaggest/swac swac --help
v0.1.28 swac
OpenAPI/Swagger compiler, https://github.com/swaggest/swac
Usage:
swac <action>
action Action name
Allowed values: php-guzzle-client, go-client, js-client, markdown
...
Example
mkdir petstore && cd petstore docker run -v $(pwd):/code -u 1000:1000 swaggest/swac swac php-guzzle-client https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v2.0/json/petstore.json --namespace MyApp\\Petstore
Schema can be passed by STDIN using -
as file path.
cat ./openapi.json | docker run -i --rm swaggest/swac swac markdown -
Composer
composer global require swaggest/swac
Usage
PHP Client
swac php-guzzle-client --help
v0.1.0 swac php-guzzle-client
OpenAPI/Swagger compiler, https://github.com/swaggest/swac
Usage:
swac php-guzzle-client <schemaPath> --namespace <namespace>
schemaPath Path/URL to OpenAPI/Swagger schema
Options:
--operations <operations> Operations filter in form of comma-separated list of method/path, default empty
--project-path <projectPath> Path to project root, default ./
--namespace <namespace> Project namespace
The generated client depends on swaggest/rest-client
,
guzzlehttp/guzzle
6, and swaggest/json-schema
.
Go Client
swac go-client --help
v0.1.14 swac go-client
OpenAPI/Swagger compiler, https://github.com/swaggest/swac
Usage:
swac go-client <schemaPath>
schemaPath Path/URL to OpenAPI/Swagger schema
Options:
--operations <operations> Operations filter in form of comma-separated list of method/path, default empty
--out <out> Path to output package, default ./client
--pkg-name <pkgName> Output package name, default "client"
--skip-default-additional-properties Do not add field property for undefined `additionalProperties`
--skip-do-not-edit Skip adding "DO NOT EDIT" comments
--add-request-tags Add field tags with name and location to request structure properties, e.g. 'ID int `query:"id"`'
--show-const-properties Show properties with constant values, hidden by default
--keep-parent-in-property-names Keep parent prefix in property name, removed by default
--ignore-nullable Add `omitempty` to nullable properties, removed by default
--ignore-xgo-type Ignore `x-go-type` in schema to skip generation
--with-zero-values Use pointer types to avoid zero value ambiguity
--fluent-setters Add fluent setters to struct fields
--ignore-required Ignore if property is required when deciding on pointer type or omitempty
--renames <renames...> Map of exported symbol renames, example From:To
--with-tests Generate (un)marshaling tests for entities (experimental feature)
--require-xgenerate Generate properties with `x-generate: true` only
--validate-required Generate validation code to check required properties during unmarshal
The generated client is a single package without external dependencies.
JavaScript Client
swac js-client --help
v0.1.21 swac js-client
OpenAPI/Swagger compiler, https://github.com/swaggest/swac
Usage:
swac js-client <schema>
schema Path/URL to OpenAPI/Swagger schema
Options:
--operations <operations> Operations filter in form of comma-separated list of method/path, default empty
--ignore-operation-id Ignore operationId and always name operations using method and path
--client-name <clientName> Name of generated client class, default APIClient
--types-prefix <typesPrefix> Prefix generated jsdoc class names
--out <out> Path to output files, default ./client
--patches <patches...> JSON patches to apply to schema file before processing, merge patches are also supported
swac js-client openapi.json --out ./ --client-name Backend --types-prefix xh
The generated client is a ES5 class using XMLHttpRequest
and jsdoc
type definitions without external dependencies
suitable for direct usage in browsers.
Markdown
swac markdown --help
v0.1.24 swac markdown
OpenAPI/Swagger compiler, https://github.com/swaggest/swac
Usage:
swac markdown <schema>
schema Path/URL to OpenAPI/Swagger schema
Options:
--operations <operations> Operations filter in form of comma-separated list of method/path, default empty
--ignore-operation-id Ignore operationId and always name operations using method and path
--client-name <clientName> Name of generated client class, default APIClient
--add-schema-url <addSchemaUrl> Add schema link to the document
--types-prefix <typesPrefix> Prefix generated type names
--out <out> Path to output files, default ./client
--patches <patches...> JSON patches to apply to schema file before processing, merge patches are also supported
swac markdown openapi.json --out ./API-Docs.md --types-prefix xh