Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A Codeception module for Symfony framework.

## Requirements

* `Symfony` `5.4.x`, `6.4.x`, `7.3.x` or higher, as per the [Symfony supported versions](https://symfony.com/releases).
* `Symfony` `5.4.x`, `6.4.x`, `7.4.x` or `8.0.x`, as per the [Symfony supported versions](https://symfony.com/releases).
* `PHP 8.2` or higher.

## Installation
Expand Down
6 changes: 3 additions & 3 deletions src/Codeception/Module/Symfony.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
*
* ## Config
*
* ### Symfony 5.4 or higher
* ### Symfony 5.4, 6.4, 7.4 or 8.0
*
* * `app_path`: 'src' - Specify custom path to your app dir, where the kernel interface is located.
* * `environment`: 'local' - Environment used for load kernel
Expand All @@ -91,7 +91,7 @@
* * `rebootable_client`: 'true' - Reboot client's kernel before each request
* * `guard`: 'false' - Enable custom authentication system with guard (only for Symfony 5.4)
* * `bootstrap`: 'false' - Enable the test environment setup with the tests/bootstrap.php file if it exists or with Symfony DotEnv otherwise. If false, it does nothing.
* * `authenticator`: 'false' - Reboot client's kernel before each request (only for Symfony 6.0 or higher)
* * `authenticator`: 'false' - Enable custom authentication system with authenticator (only for Symfony 6.0 or higher)
*
* #### Sample `Functional.suite.yml`
*
Expand Down Expand Up @@ -181,7 +181,7 @@ class Symfony extends Framework implements DoctrineProvider, PartedModule
* }
*/
public array $config = [
'app_path' => 'app',
'app_path' => 'src',
'kernel_class' => 'App\\Kernel',
'environment' => 'test',
'debug' => true,
Expand Down
2 changes: 1 addition & 1 deletion src/Codeception/Module/Symfony/NotifierAssertionsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function assertNotificationCount(int $count, ?string $transportName = nul
* ```php
* <?php
* $event = $I->getNotifierEvent();
* $I->asserNotificationIsNotQueued($event);
* $I->assertNotificationIsNotQueued($event);
* ```
*/
public function assertNotificationIsNotQueued(MessageEvent $event, string $message = ''): void
Expand Down