Paolo Cuffiani

Results 27 comments of Paolo Cuffiani

Hi, I'm bumping this issue, as the same problem also applies to many other PHP versions that have reached EOL long ago. Namely, PHP 5.4, 5.5, 7.0, 7.1, with PHP...

Hi @Nemo64 ! Sorry for replying with such a delay, but I've been kinda busy these days. I'd rather not add another versioning system on top on PHP's one. So,...

I'd use the short version. Basically what `git rev-parse --short HEAD` prints to stdout. According to [Git docs](https://git-scm.com/docs/git-rev-parse#git-rev-parse---shortlength), this returns always a unique prefix of at least N characters —...

Hi @TKr, sorry for the issue. Can you help me reproduce? Can you please write which libraries are you installing and their versions? Maybe try attaching your `composer.json` redacting anything...

I don't quite like the idea of intercepting an event and doing something nasty in place of what `$Table->delete()` is supposed to do. It sounds like something that might be...

BTW, if `$Table->find('status', ['status' => ['on', 'draft'], 'deleted' => false])` looks too much verbose, we could add a method to Controller itself in order to modify a Query object by...

About paginating included resources in JSON API: http://discuss.jsonapi.org/t/paginating-relationships-includes/820

I'm not quite sure that this should be unique for every user… What if a user needs to login on two different devices?

In addition to the already present `key`, `createUser` and `extraUserData` keys in external user auth sources, `groups` and `redirectUrl` have now been added. Your config file should now look like...

Honestly, I think that query is required in many scenarios, given the way we handle routes. I see that that `$id` variable is used in several ways within that method,...