Alex Weissman
Alex Weissman
Agreed. I'm putting this on the 0.3.2 milestone.
This happened to me with "User Agent Switcher". I'm not exactly sure how this extension works, but it looks like it may have installed one of the new, infected versions...
What are the security issues with storing the username in the cookie? And, why don't you have a surrogate numeric key instead?
So actually, Eloquent already supports model events: https://laravel.com/docs/5.4/eloquent#events
This may be difficult if @ezyang wants to maintain compatibility with PHP 5.2. PSR-4 relies on namespaces, which weren't introduced until PHP 5.3.
I ended up creating a [manager class](https://github.com/userfrosting/UserFrosting/blob/master/app/sprinkles/account/src/Authenticate/Authenticator.php) for my authentication system, which encapsulates both the `Storage` and `Authenticator`. So, I'm not sure if this is still an issue for me.
I've been busy with a couple other major projects recently (OSS and otherwise), but once finished I'd be willing to merge some carefully reviewed and tested PRs back into the...
Yup, I'll give it a try. Will a dependent task like `gulp-replace` also work for modifying relative URLs in CSS (background images, `@font-face` sources, etc) before/after bundling?
Yes, I like this. I imagine I could assign `lazypipe().pipe(replace('bar', 'foo'))` to a variable, and that way be able to use the same transformation in different bundles? Thanks again for...