You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.markdown
+12-21Lines changed: 12 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,18 @@ title: Codeception Changelog
9
9
10
10
11
11
12
+
### module-symfony 3.9.1: 3.9.1
13
+
14
+
Released by [{:height="16" width="16"} TavoNiievez](https://github.com/TavoNiievez) on 2026/04/14 20:34:41 / [Repository](https://github.com/Codeception/module-symfony) / [Releases](https://github.com/Codeception/module-symfony/releases)
15
+
16
+
17
+
18
+
### What's Changed
19
+
* fix inconsistencies across assertion traits and tests in https://github.com/Codeception/module-symfony/pull/228, https://github.com/Codeception/module-symfony/pull/229 and https://github.com/Codeception/module-symfony/pull/230.
Released by [{:height="16" width="16"} Slamdunk](https://github.com/Slamdunk) on 2026/04/08 14:18:15 / [Repository](https://github.com/Codeception/module-mezzio) / [Releases](https://github.com/Codeception/module-mezzio/releases)
@@ -4258,27 +4270,6 @@ Released by [{:heigh
4258
4270
4259
4271
4260
4272
4261
-
### module-symfony 1.2.0: 1.2.0
4262
-
4263
-
Released by [{:height="16" width="16"} Naktibalda](https://github.com/Naktibalda) on 2020/10/31 18:41:28 / [Repository](https://github.com/Codeception/module-symfony) / [Releases](https://github.com/Codeception/module-symfony/releases)
4264
-
4265
-
4266
-
4267
-
* New methods by **[TavoNiievez](https://github.com/TavoNiievez)**:
4268
-
* amLoggedInAs
4269
-
* logout
4270
-
* seeInSession
4271
-
* seeAuthentication
4272
-
* dontSeeAuthentication
4273
-
* seeUserHasRole
4274
-
* amOnAction
4275
-
* seeCurrentActionIs
4276
-
* seeNumRecords
4277
-
4278
-
* Supports vlucas/phpdotenv ^3.6 and ^4.1
4279
-
* Improved description and error messages of grabService and seeEmailIsSent by **[ThomasLandauer](https://github.com/ThomasLandauer)**
4280
-
4281
-
4282
4273
### module-memcache 1.0.1: Support PHP 8
4283
4274
4284
4275
Released by [{:height="16" width="16"} Naktibalda](https://github.com/Naktibalda) on 2020/10/28 13:30:19 / [Repository](https://github.com/Codeception/module-memcache) / [Releases](https://github.com/Codeception/module-memcache/releases)
Copy file name to clipboardExpand all lines: docs/modules/Symfony.md
+14-15Lines changed: 14 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ and [HttpKernel Component](https://symfony.com/doc/current/components/http_kerne
34
34
35
35
### Config
36
36
37
-
#### Symfony 5.4or higher
37
+
#### Symfony 5.4, 6.4, 7.4 or 8.0
38
38
39
39
*`app_path`: 'src' - Specify custom path to your app dir, where the kernel interface is located.
40
40
*`environment`: 'local' - Environment used for load kernel
@@ -45,7 +45,7 @@ and [HttpKernel Component](https://symfony.com/doc/current/components/http_kerne
45
45
*`rebootable_client`: 'true' - Reboot client's kernel before each request
46
46
*`guard`: 'false' - Enable custom authentication system with guard (only for Symfony 5.4)
47
47
*`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.
48
-
*`authenticator`: 'false' - Reboot client's kernel before each request (only for Symfony 6.0 or higher)
48
+
*`authenticator`: 'false' - Enable custom authentication system with authenticator (only for Symfony 6.0 or higher)
49
49
50
50
##### Sample `Functional.suite.yml`
51
51
@@ -267,6 +267,17 @@ $I->amLoggedInAs($user);
267
267
* `param ?string` $firewallContext
268
268
* `return void`
269
269
270
+
Login with the given authentication token.
271
+
272
+
If you have more than one firewall or firewall context, you can specify the desired one as a parameter.
273
+
274
+
{% highlight php %}
275
+
276
+
<?php
277
+
$I->amLoggedInWithToken($token);
278
+
279
+
{% endhighlight %}
280
+
270
281
271
282
#### amOnAction
272
283
@@ -818,7 +829,7 @@ Use `getNotifierEvent(int $index = 0, ?string $transportName = null)` to retriev
0 commit comments