Woody Gilk
Woody Gilk
Given a schema that uses `allOf` to combine two different `object` schemas, the properties of the two schemas are not combined: ```json { "components": { "schemas": { "identifier": { "type":...
I am using [localstack][1] for development and noticed a discrepancy between the official AWS SDK and Async AWS. My configuration is: ``` [ 'region' => 'us-west-2', 'endpoint' => 'http://localhost:4566', ]...
The current implementation doesn't handle modifying resources that have relations, because it submits related references in `data.attributes` instead of `data.relationships`. For instance, assigning a post to an author should submit...
Any idea what it would take to support OpenAPI 3? I assume it would impact request/response definition at minimum. Have this been explored at all?
I attempted to load the official Swagger example "PetStore" into this tool and it failed: ``` Fatal error: Uncaught InvalidArgumentException: formData is not a valid parameter location in vendor/eleven-labs/api-validator/src/Definition/Parameters.php on...
We are adding some additional (micro) services to our project, so now we have: ``` composer.json composer.lock services/ foo/ package.json package-lock.json ``` I'd like to be able to check for...
The current definition has a variable named "hydrator": ```php interface PropertyCaster { public function cast(mixed $value, ObjectMapper $hydrator): mixed; } ``` It used to be that `ObjectMapper` was called `ObjectHydrator`,...
I really appreciate this package, and it seems like it has stagnated. I would like to offer my help maintaining this package so that it can continue to be a...
There is no need to use `file_exists` before using `is_file` and `is_dir`, this makes for confusing errors. For instance, if you call `Assert::directory('invalid/path')` then the reported error will be: ```...
Given the following `parameters` schema: ```json { "name": "filter", "in": "query", "style": "deepObject", "explode": false, "schema": { "type": "object", "properties": { "status": { "type": "array", "items": { "type": "string", "enum":...