Verifier to add assertions about the contents of an array or JSON string. Something like:
verify([1, 2, 3])->arrayContent()->is()->int();
verify('{"name":"George","gpa":3.8}')->jsonContent()
->name->is()->identicalTo('George')
->gpa->within(0.01)->is()->equalTo(3.8);
Verifier to add assertions about the contents of an array or JSON string. Something like: