Open charjr opened 1 year ago
Currently Membrane only supports "explode":"false" due to the way in which PHP parses query strings.
"explode":"false"
This may require creating our own query string parser.
https://github.com/membrane-php/openapi-reader/pull/7 This will check for conflicting styles, if there are not conflicting styles then we do not need to check (and consequently throw exceptions) on explode: true
explode: true
Once this is complete, we will need to use our own QueryStringToArray filter to parse query strings as opposed to the built-in php function which relies on square brackets.
QueryStringToArray
Issue
Currently Membrane only supports
"explode":"false"
due to the way in which PHP parses query strings.This may require creating our own query string parser.
Work being done on this so far:
https://github.com/membrane-php/openapi-reader/pull/7 This will check for conflicting styles, if there are not conflicting styles then we do not need to check (and consequently throw exceptions) on
explode: true
Once this is complete, we will need to use our own
QueryStringToArray
filter to parse query strings as opposed to the built-in php function which relies on square brackets.