Laravel 11.19 Released With New Features And Updates
The Laravel team released v11.19 with new features including assertExactJsonStructure, whereNone query builder method, Number::trim() method, and HTML assertion convenience methods.
The Laravel team released v11.19 this week, including asserting the exact JSON structure, a whereNone query builder method, a Number::trim() method, HTML assertion convenience methods, and more.
A stand-out contributor in Laravel 11.19 is Günther Debrauwer, who contributed four pull requests to the framework this week!
#Add assertExactJsonStructure() Test Method
Günther Debrauwer contributed the assertExactJsonStructure() to ensure that a test response completely follows an expected structure:
/*Given the following response:{ "data": { "id": 1, "firstname": "Taylor", "l...