From d371dcb3e3d94d13c4ace077bfaf359894aa3c1c Mon Sep 17 00:00:00 2001 From: Antoine Lamirault Date: Thu, 1 May 2025 14:24:54 +0200 Subject: [PATCH] Use phpunit 11 in Create Framework tutorial --- create_framework/unit_testing.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/create_framework/unit_testing.rst b/create_framework/unit_testing.rst index f935a024b20..9c179cd3152 100644 --- a/create_framework/unit_testing.rst +++ b/create_framework/unit_testing.rst @@ -12,7 +12,7 @@ using `PHPUnit`_. At first, install PHPUnit as a development dependency: .. code-block:: terminal - $ composer require --dev phpunit/phpunit:^10.0 + $ composer require --dev phpunit/phpunit:^11.0 Then, create a PHPUnit configuration file in ``example.com/phpunit.xml.dist``: @@ -21,7 +21,7 @@ Then, create a PHPUnit configuration file in ``example.com/phpunit.xml.dist``: