File tree Expand file tree Collapse file tree 5 files changed +19
-5
lines changed Expand file tree Collapse file tree 5 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 55- Bug #141 : Move badges for latest stable version and total downloads in ` README.md ` to ` Installation ` section (@terabytesoftw )
66- Bug #143 : Add ` Available stacks ` section with ` RoadRunner ` badge to ` README.md ` (@terabytesoftw )
77- Bug #146 : Remove ` yiisoft/yii2-symfonymailer ` dependency from ` composer.json ` (@terabytesoftw )
8+ - Bug #149 : Update PHPStan annotations and add container configuration file (@terabytesoftw )
89
910## 0.1.0 August 31, 2025
1011
Original file line number Diff line number Diff line change 44
55use app \usecase \hello \HelloController ;
66
7- /** @var string[] $components */
7+ /** @phpstan- var array< string, mixed> $components */
88$ components = require dirname (__DIR__ ) . '/common/components.php ' ;
9- /** @var string[] $params */
9+ /** @phpstan- var array< string, mixed> $params */
1010$ params = require dirname (__DIR__ ) . '/params-console.php ' ;
1111
1212return [
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ return [];
Original file line number Diff line number Diff line change 44
55use app \usecase \site \SiteController ;
66
7- /** @phpstan-var string[] $components */
7+ /** @phpstan-var array< string, mixed> $components */
88$ components = require __DIR__ . '/components.php ' ;
9- /** @phpstan-var string[] $modules */
9+ /** @phpstan-var array<string, mixed> $container */
10+ $ container = require __DIR__ . '/container.php ' ;
11+ /** @phpstan-var array<string, mixed> $modules */
1012$ modules = require __DIR__ . '/modules.php ' ;
11- /** @phpstan-var string[] $params */
13+ /** @phpstan-var array< string, mixed> $params */
1214$ params = require dirname (__DIR__ ) . '/params-web.php ' ;
1315
1416$ rootDir = dirname (__DIR__ , 2 );
2527 'basePath ' => $ rootDir ,
2628 'bootstrap ' => ['log ' ],
2729 'components ' => $ components ,
30+ 'container ' => $ container ,
2831 'controllerMap ' => [
2932 'site ' => ['class ' => SiteController::class],
3033 ],
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ return [];
You can’t perform that action at this time.
0 commit comments