Maurício Meneghini Fauth
Maurício Meneghini Fauth
It's not possible to run `composer install` with PHP 7.3. ``` Problem 1 - Installation request for mpdf/mpdf v7.1.5 -> satisfiable by mpdf/mpdf[v7.1.5]. - mpdf/mpdf v7.1.5 requires php ^5.6 ||...
The `/setup` entry point were removed and was moved to the `/setup` route. For example: ```diff - http://localhost/setup/index.php + http://localhost/index.php?route=/setup ``` This was made basically for two reasons. To have...
A GitHub Action workflow that runs when a JavaScript file is changed and shows the generated output differences. See discussion in https://github.com/phpmyadmin/phpmyadmin/pull/17625#issuecomment-1173815462.
Passing `null` to `base64_decode` on PHP 8.1 triggers a [deprecation](https://wiki.php.net/rfc/deprecate_null_to_scalar_internal_arg) message. `base64_decode` returns an empty string when `null` is passed as a parameter. For the next major version of php-webdriver,...
### Bug description https://github.com/phpmyadmin/phpmyadmin/runs/5276751033?check_suite_focus=true#step:15:29 ``` PHP Deprecated: base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in /home/runner/work/phpmyadmin/phpmyadmin/vendor/php-webdriver/webdriver/lib/Remote/RemoteWebDriver.php on line 367 ``` ### Details * Php-webdriver version:...
- Renames the `Facebook` vendor namespace to `PhpWebDriver` (including classes with `@deprecated` annotation). - Adds class aliases for `Facebook` vendor namespace. - Adds `@deprecated` annotation for classes with `Facebook` vendor...
Formatter doesn't handle [CASE expressions](https://dev.mysql.com/doc/refman/8.0/en/control-flow-functions.html#operator_case) and [CASE statements](https://dev.mysql.com/doc/refman/8.0/en/case.html). Related to #272. Examples: CASE expression: ```sql -- original SELECT CASE 1 WHEN 1 THEN 'one' WHEN 2 THEN 'two' ELSE 'more'...
- [x] Back-port commit c5611531c03a5c9dfe13510e7fc5b901daa77039 - [x] Update documentation about the `blowfish_secret` setting - [x] Update the setup page to reflect the `blowfish_secret` changes Fixes https://github.com/phpmyadmin/phpmyadmin/issues/17369.
Do not show deprecation notices when not in a development environment. Deprecation notices aren't actually errors. They're are only useful for developers. Related to #17720.
The [`PhpMyAdmin\Dbal\DatabaseName`](https://github.com/phpmyadmin/phpmyadmin/blob/b9499b51c8c0a0a47c013ed39ae2a9534b414779/libraries/classes/Dbal/DatabaseName.php) and [`PhpMyAdmin\Dbal\TableName`](https://github.com/phpmyadmin/phpmyadmin/blob/b9499b51c8c0a0a47c013ed39ae2a9534b414779/libraries/classes/Dbal/TableName.php) classes should be used as a type for the database and table names instead of using plain strings. ```diff - public function foo(string $db, string $table)...