kenjis
kenjis
> What happens if you execute vendor/bin/phpunit --order-by=random It surely fails. Because we have test code that depend on the test method order.
Ah, we don't use `:memory:` database in GitHub Actions: https://github.com/codeigniter4/CodeIgniter4/blob/caf314bcdcf939276c8091c7c0b4b6ce91a03e72/tests/_support/Config/Registrar.php#L72
```diff --- a/app/Config/Database.php +++ b/app/Config/Database.php @@ -166,7 +166,7 @@ class Database extends Config 'hostname' => '127.0.0.1', 'username' => '', 'password' => '', - 'database' => ':memory:', + 'database' => 'database.db',...
I have concerns. 1. Too many items in the output can be difficult to read. I want to display only the really important items. 2. The current output is too...
This command is mainly used to check the PHP settings of production environments. > The Recommended column shows the recommended values for production environment. They may differ in development environments....
@ddevsr If you want to show opcache detailed settings, how about adding an argument? E.g. `php spark phpini:check opcache` shows only opcache settings.
Recommendations by ChatGPT [CodeIgniter 4 Assistant](https://chatgpt.com/g/g-WbzS9nqE6-codeigniter-4-assistant) --- When deploying CodeIgniter 4 (CI4) in a production environment, configuring PHP’s OPcache properly is essential to ensure optimal performance. Below are the recommended...
Recommendations by Claude 3.5 Sonnet --- As a PHP expert, I can provide recommended values for the PHP ini settings you've listed, specifically tailored for a CodeIgniter 4 production environment....
Thank you for reporting. If you have an idea to fix the issue, feel free to send a PR. https://github.com/codeigniter4/CodeIgniter4/blob/develop/contributing/pull_request.md
An easy fix would be like this. ```php /** * The Router class uses a RouteCollection's array of routes, and determines * the correct Controller and Method to execute. *...