Nick
Nick
Sorry for the delay, I haven't tested LG on Ubuntu 16.04 yet, but my guess is it's a permission based issue. I'll leave a quote from a previous issue: https://github.com/telephone/LookingGlass/issues/32#issuecomment-103438233...
Leaving v1 as is for IP retrieval. This will be pushed to v2.
I can't really think of a proper use for this feature. Dependencies should be handled by Composer, and if a dependency is missing, it'll be obvious via the error message/s...
@drewm How would you handle version comparison (new functions in v4 versus v5)? Or would you just have a broad check, and leave version comparison to the user? For frameworks...
Why not just create a back button next to the breadcrumbs, and implement history via local storage?
A few things: 1) You forgot to add the "READABLE_CACHE_KEYS" var to hive, with a default of `FALSE` 2) There's no need for an `!empty()` check, a simple `$this->hive['READABLE_CACHE_KEYS']?$key.'.var':$this->hash($key).'.var'` works....
> I was deliberately trying to 1) minimize the number of changes and 2) preserve current behavior. That's why I didn't add the key to the hive (which means I...
I'm happy with a forked version, as I'll install whatever version @wizza-smile is working on. :+1: man, you've done a great job so far! @Kronuz I don't mean to be...
> In the first method, isn't a single wildcard enough? => `GET|HEAD|POST /*` No, as the single wildcard will take precedence over any single level routes. E.g. ``` php $f3->route('GET|HEAD|POST...