garas
Repos
8
Followers
11
Following
1

Events

issue comment
Non intuitive name of `Cake\Validation\Validator->isArray()`

When this rule was added in https://github.com/cakephp/cakephp/pull/9057, isArray was used because it was impossible to use array as method name in PHP 5.

Since PHP 7 it is possible to use array as method name, so it would be good to rename to use same naming conventions as other methods.

Created at 1 day ago
delete branch
garas delete branch platform_check_php64bit
Created at 4 days ago
issue comment
Add a component from a subfolder

It is possible to load component from any namespace:

$this->loadComponent('SystemsUtils', ['className' => 'App\Controller\Components\Systems\UtilsComponent']);

Created at 1 week ago
issue comment
4.x: remove loading repl plugin in bootstrap cli

Isn't that what addOptionalPlugin is for?

It is for dev dependencies (require-dev in composer.json).

Repl in not included neither in require or require-dev, only in suggest.

Created at 3 weeks ago
pull request opened
Add platform check for 64-bit PHP

Check if PHP is 64-bit if there is "php-64bit" requirement.

Created at 1 month ago

Add platform check for 64-bit PHP

Created at 1 month ago
create branch
garas create branch platform_check_php64bit
Created at 1 month ago
Created at 1 month ago
issue comment
Drump Procedures

Use 5th parameter of constructor:

$dumper = new IMysqldump\Mysqldump('mysql:host=localhost;dbname=testdb', 'username', 'password', [], ['routines' => true]);

https://github.com/ifsnop/mysqldump-php#constructor-and-default-parameters

Created at 1 month ago
issue comment
PHP 8.2 Update

@ifsnop If you have no plans to maintain this package anymore, you should mark it as abandoned so everybody would know that so they could search for replacement.

Go to packagist.org, login and click the button "Abandon". There you can also enter druidfi/mysqldump-php as suggested replacement. Also update Readme.

Created at 1 month ago
issue comment
Update rector/rector requirement from ^0.14.8 to ^0.15.10

@dependabot ignore this major version

Created at 2 months ago
issue comment
PHP 8.2: Fix dynamic property deprecation warnings

It would be better to add real properties to classes than #[\AllowDynamicProperties].

Follow instructions on https://opensource.com/article/19/7/create-pull-request-github to create pull request.

Created at 2 months ago
issue comment
PHP 8.2: Fix dynamic property deprecation warnings

Error.ignoredDeprecationPaths supresses only CakePHP deprecation warnings.

Dynamic property deprecation warnings comes from PHP. To disable PHP deprecation warnings, set Error.errorLevel to E_ALL ^ E_DEPRECATED.

Created at 2 months ago