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
This bundle ease the use of the CBOR decoder. It could be great to allow the use of the decoder as a serializer decoder.
Also, the encoding process could be used.
Similar to the example from the documentation:
use App\Model\Person; $person = new Person(); $person->setName('foo'); $person->setAge(99); $person->setSportsperson(false); $cborContent = $serializer->serialize($person, 'cbor'); // $cborContent contains A4646E616D6563666F6F6361676518636C73706F727473706572736F6EF469637265617465644174F6 $person = $serializer->deserialize($cborContent, Person::class, 'cbor');
The text was updated successfully, but these errors were encountered:
Spomky
No branches or pull requests
Description
This bundle ease the use of the CBOR decoder.
It could be great to allow the use of the decoder as a serializer decoder.
Also, the encoding process could be used.
Example
Similar to the example from the documentation:
The text was updated successfully, but these errors were encountered: