Skip to content

Commit 3ea6acb

Browse files
authored
Allow Laravel 9, improve Codeception 5 support (#39)
1 parent 696e8e6 commit 3ea6acb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
"php": "^8.0",
2323
"ext-json": "*",
2424
"codeception/lib-innerbrowser": "^2.0 | *@dev",
25-
"codeception/codeception": "^5.0.0-alpha1"
25+
"codeception/codeception": "^5.0.0-alpha1 | dev-5.0-interfaces"
2626
},
2727
"require-dev": {
2828
"codeception/module-asserts": "^2.0 | *@dev",
2929
"codeception/module-rest": "^2.0 | *@dev",
30-
"laravel/framework": "^6.0 | ^7.0 | ^8.0",
30+
"laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0",
3131
"vlucas/phpdotenv": "^3.6 | ^4.2 | ^5.3"
3232
},
3333
"autoload": {

src/Codeception/Module/Laravel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ class Laravel extends Framework implements ActiveRecord, PartedModule
152152
/**
153153
* @var array
154154
*/
155-
public $config = [];
155+
public array $config = [];
156156

157157
public function __construct(ModuleContainer $moduleContainer, ?array $config = null)
158158
{

0 commit comments

Comments
 (0)