Danilo Polani
Danilo Polani
First of all: great extension! Since I'm lazy and I don't want everytime to open `Cmd+Shift+P` etc., I thought it would be nice to have a CodeLens support. Please find...
This PR will add a context menu (right click menu) to folders and `.php` files to run tests directly from the Explorer tab of VSCode. Please see an example below....
I've read in some old thread here that PSR-4 was dropped because "there's a single file", but according to [php-fig](https://www.php-fig.org/psr/psr-0/): > Deprecated - As of 2014-10-21 PSR-0 has been marked...
Hello, the package works great! It would be nice to have the chance to use `loadCount` too, like we already use `with` / `load`. Currently if I try to use...
Hey @jessarcher , I was raising this issue because `thecodingmachine/safe` just released a new minor with breaking changes, renaming the `options` flag in `json_decode` into `flags` and basically they won't...
This PR introduces a new features to display inline the relationships of a model. It's still work in progress (todo below) but I think it could be a nice addition....
### What version of `astro` are you using? 1.0.0 ### Are you using an SSR adapter? If so, which one? None ### What package manager are you using? npm ###...
This PR enables users to write camelCase methods along with snake_case ones. This ```php $this->crud ->field('role_id') ->type('select2_grouped') ->group_by('department') ->group_by_attribute('name') ->group_by_relationship_back('roles'); ``` now can be written also like this: ```php $this->crud...
Hello, is there a way to add more times to the timepicker? I need to add, after "11:30 PM" (or 23:30) the times of the next day (so restart from...
This PR aims to set the correct `@return` tag of the `render()` method and the `@param` tag of `setCache()`. Currently they're both wrong because they point to a wrong or...