v2.2.0
What's Changed
- Add assertConfigHasFragments by @kastahov in #30
config/http.php
return [
'basePath' => '/',
'headers' => [
'Content-Type' => 'text/html; charset=UTF-8',
],
'middleware' => [],
];
$this->assertConfigHasFragments('http', [
'basePath' => '/'
]);
$this->assertConfigHasFragments('http', [
'headers' => [
'Content-Type' => 'text/html; charset=UTF-8',
],
]);
New Contributors
- @kastahov made their first contribution in #30
Full Changelog: 2.1.0...2.2.0