Skip to content

Commit 84b9c4e

Browse files
github-actions[bot]github-actions[bot]
authored andcommitted
updated
1 parent a2d623c commit 84b9c4e

File tree

2 files changed

+13
-21
lines changed

2 files changed

+13
-21
lines changed

changelog.markdown

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@ title: Codeception Changelog
99

1010

1111

12+
### module-laminas 1.1.0: 1.1.0
13+
14+
Released by [![](https://avatars.githubusercontent.com/u/64917965?v=4&s=16) TavoNiievez](https://github.com/TavoNiievez) on 2021/10/06 00:34:16 / [🦑 Repository](https://github.com/Codeception/module-laminas) / [📦 Releases](https://github.com/Codeception/module-laminas/releases)
15+
16+
17+
18+
- Support for PHP versions lower than 7.3 is removed.
19+
- Code standards updated to PHP 7.3 by **[TavoNiievez](https://github.com/TavoNiievez)** .
20+
- Remove dependency on laminas/laminas-console ([#13](https://github.com/Codeception/module-laminas/issues/13)) by **[javabudd](https://github.com/javabudd)** .
21+
- Various documentation improvements by **[Naktibalda](https://github.com/Naktibalda)** and **[Arhell](https://github.com/Arhell)** .
22+
23+
1224
### module-laravel 2.1.0: 2.1.0
1325

1426
Released by [![](https://avatars.githubusercontent.com/u/64917965?v=4&s=16) TavoNiievez](https://github.com/TavoNiievez) on 2021/09/10 05:09:10 / [🦑 Repository](https://github.com/Codeception/module-laravel) / [📦 Releases](https://github.com/Codeception/module-laravel/releases)

docs/modules/Laminas.md

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ Warning. Using PHAR file and composer in the same project can cause unexpected e
3535
This module allows you to run tests inside the Laminas Project.
3636
Uses `tests/application.config.php` config file by default.
3737

38-
Note: services part and Doctrine integration is not compatible with Laminas yet
39-
4038
### Status
4139

4240
* Maintainer: **Naktibalda**
@@ -199,11 +197,6 @@ Adds service to a Laminas container
199197

200198
* `[Part]` services
201199

202-
* `param string` $name
203-
* `param object` $service
204-
205-
* `return void`
206-
207200

208201
#### amHttpAuthenticated
209202

@@ -233,20 +226,15 @@ $I->amOnPage('/register');
233226
#### amOnRoute
234227

235228
Opens web page using route name and parameters.
229+
236230
{% highlight php %}
237231

238232
<?php
239233
$I->amOnRoute('posts.create');
240234
$I->amOnRoute('posts.show', array('id' => 34));
241-
?>
242235

243236
{% endhighlight %}
244237

245-
* `param string` $routeName
246-
* `param array` $params
247-
248-
* `return void`
249-
250238

251239
#### attachFile
252240

@@ -730,13 +718,10 @@ Recommended to use for unit testing.
730718

731719
<?php
732720
$em = $I->grabServiceFromContainer('Doctrine\ORM\EntityManager');
733-
?>
734721

735722
{% endhighlight %}
736723
* `[Part]` services
737724

738-
* `param string` $service
739-
740725

741726

742727
#### grabTextFrom
@@ -921,14 +906,9 @@ Checks that current url matches route.
921906
<?php
922907
$I->seeCurrentRouteIs('posts.index');
923908
$I->seeCurrentRouteIs('posts.show', ['id' => 8]));
924-
?>
925909

926910
{% endhighlight %}
927911

928-
* `param string` $routeName
929-
* `param array` $params
930-
931-
* `return void`
932912

933913

934914
#### seeCurrentUrlEquals

0 commit comments

Comments
 (0)