diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b05845..3faf0e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release. +## 1.0.0 + +### Removed + +- Removed support for < PHP 8.1 + +### Added + +- Support for Symfony 7 + ## 0.3.1 ### Fixed diff --git a/README.md b/README.md index a571cca..1c6ef68 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ use Symfony\Config\HappyrServiceMockingConfig; return static function (HappyrServiceMockingConfig $config) { $config->services([ - \App\AcmeApiClient::class - \App\Some\OtherService::class + \App\AcmeApiClient::class, + \App\Some\OtherService::class, ]); }; @@ -88,8 +88,6 @@ class MyTest extends WebTestCase // ... $apiClient = self::getContainer()->get(AcmeApiClient::class); - // On Symfony < 5.3 - // $apiClient = self::$container->get(AcmeApiClient::class); // For all calls to $apiClient->show() ServiceMock::all($apiClient, 'show', function ($id) {