John Rivs

Results 7 issues of John Rivs

This is what I have in `environment.yaml`: ``` os::packages: php5-mcrypt: true ``` I tried that alone and ``` php::builds: 5.6.0: installed: true default: true variants: dev extensions: xdebug: enabled: true...

If I type `p` cause I want Emmet to expand it to `` the first thing I get is this extension's `b:php`. Is there a way to put all the...

I'm using this adapter inside a queue. Once it's registered via `Storage::extend()`, it'll be reused as long as the queue is running. Unfortunately, the access token expires in 1 hour...

![](https://i.imgur.com/YeVBhOo.png) Is there a way for us to configure what action is triggered when clicking on the icon? By default, it's tab to window/popup but I'd like to tab to...

What I have: ```php $child_1 = factory(User::class)->states('active')->create(); $child_1_1 = factory(User::class)->states('active')->create()->makeChildOf($child_1); $child_1_1_1 = factory(User::class)->states('active')->create()->makeChildOf($child_1_1); $child_1_1_2 = factory(User::class)->states('active')->create()->makeChildOf($child_1_1); $child_1_1_3 = factory(User::class)->states('active')->create()->makeChildOf($child_1_1); $child_1_1_4 = factory(User::class)->create()->makeChildOf($child_1_1); $child_1_1->cap(); ``` When I do: ```php public function...

Note: I suggested [this idea](https://cmty.app/nuxt/nuxt.js/issues/c7800) a few months ago. Since then, @manniL released a nice little [package](https://github.com/Developmint/nuxt-purgecss) to put inlined CSS through PurgeCSS. The thing I'm interested the most is...