scrumworks / openapi-schema
OpenAPI schema reader/generator
Installs: 206 355
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 7
Forks: 1
Open Issues: 4
Requires
- php: >=8.1
- ext-json: *
- nette/di: ^3.0
- nette/utils: ^3.1 || ^4.0.4
- scrumworks/property-reader: ^0.8
Requires (Dev)
- php-parallel-lint/php-parallel-lint: ^1.3
- phpstan/extension-installer: ^1.1
- phpstan/phpstan: ^1.10
- phpstan/phpstan-nette: ^1.2.9
- phpunit/phpunit: ^11
- slevomat/coding-standard: ^8.14
- symplify/easy-coding-standard: ^12.1
- symplify/phpstan-extensions: ^11.4.3
- dev-master
- v0.14.1
- v0.14
- v0.13
- v0.12
- v0.11
- v0.10.3
- v0.10.2
- v0.10.1
- v0.10.0
- v0.9.0
- v0.8.0
- v0.7.0
- v0.6.0
- v0.5.0
- v0.4.0
- v0.3.5
- v0.3.4
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.0
- dev-STO-2356_enum_backed_by_int
- dev-STO-2389_enum_backed_by_int
- dev-interfaces
- dev-composer_update
- dev-AMA-5734_5
- dev-AMA-5734_2
- dev-attributes
- dev-references_implementation
- dev-di_improve
- dev-schema_references
- dev-schema_parser_refactoring
- dev-CU-amrgqe_support-for-example
- dev-array_items_annotation
This package is auto-updated.
Last update: 2025-03-28 11:39:36 UTC
README
Installation
composer require scrumworks/openapi-schema
Example
class User { public string $name; public string $surname; } class Test { /** * @var integer */ public int $test; public ?string $name; /** * @var User[] */ public array $users; } $di = new \ScrumWorks\OpenApiSchema\DiContainer(); $schemaParser = $di->getSchemaParser(); $schema = $schemaParser->getEntitySchema('Test'); // Now you can get informations about entity schema assert($schema->getPropertySchema('test') instanceof \ScrumWorks\OpenApiSchema\ValueSchema\IntegerSchema); // Getting OpenAPI entity schema (result is PHP array) $openApiTranslator = $di->getOpenApiTranslator(); $openApiValueSchema = $openApiTranslator->translateValueSchema($schema);
Testing
You can run the tests with:
composer run-script test
Contribution Guide
Feel free to open an Issue or add a Pull request.
Credits
People: