php-openapi icon indicating copy to clipboard operation
php-openapi copied to clipboard

Read and write OpenAPI yaml/json files and make the content accessible in PHP objects.

Results 83 php-openapi issues
Sort by recently updated
recently updated
newest added

Fixes the "Implicitly marking parameter ... as nullable is deprecated" deprecation warnings

Fixes https://github.com/cebe/php-openapi/issues/21 --- #### Note This PR remove [`symfony/yaml`](https://github.com/symfony/yaml) package and use [php-ext-yaml](https://www.php.net/manual/en/book.yaml.php) instead. php-ext-yaml does not support YAML 1.2 and `symfony/yaml` does.

Minimal repoduce: ```json { "openapi": "3.1.0", "info": { "title": "Test", "description": "Test", "version": "1.0" }, "components": { "schemas": { "Test": { "type": "object", "properties": { "A": { "$ref": "#/components/schemas/TestB", "nullable":...

openapi 3.1