We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello 👋,
I'm building an application where I receive a JSON schema that is stored in the database.
To avoid future heavy computation, I resolve schema references before saving it. I'm using this package and actually, I'm doing it like this:
$resolvedSchema = json_decode(json_encode(Schema::import(json_decode(json_encode($schema)))), true);
It works well but I was wondering if there was a better way to do it since using a lot fo json_decode and json_encode does not seems optimal.
json_decode
json_encode
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello 👋,
I'm building an application where I receive a JSON schema that is stored in the database.
To avoid future heavy computation, I resolve schema references before saving it. I'm using this package and actually, I'm doing it like this:
It works well but I was wondering if there was a better way to do it since using a lot fo
json_decode
andjson_encode
does not seems optimal.The text was updated successfully, but these errors were encountered: