Marcelo Rocha

Results 30 comments of Marcelo Rocha

The recent version of CakePHP requires php >= 5.6

@josegonzalez is this an issue with phpunit? What should I do to fix it?

I'm using the class `RouteContext` the code is to show the existing `Router` methods should continue working.

This is how I use the new class ``` $this->routeContext = new RouteContext([], $this->request); $url = $this->routeContext->buildUrl(['action' => 'view', 100], true); ```

@markstory which branch should I use as base for this? I noticed that we can also refactor the methods `Router::normalize` and `Router::routeExists`. I did't used them but are related to...

I don't see the need of adding request stack for this. We can provide the api for `$routeContext = Router::getContext();`, by the way, with this we could deprecated on Router...

Keeping `Router::url` will not kill me, the important thing is to extract the logic

Hi @zhkuskov I don't see how you would add validator without extending plugin's model UsersTable. Could you give more details of your use case?

It's a good feature and should not be hard to archive since we can extend the https://github.com/CakeDC/auth/blob/6.next/src/Authentication/DefaultU2fAuthenticationChecker.php

Hi @challgren , We could analyse this, but for now you could ignore the plugin routes and configure in your own config/routes.php files. To not load plugin routes: ``` $this->addPlugin('CakeDC/Users',...