Bramus

Results 122 comments of Bramus

Encountering the same issue today … all of a sudden RND keeps on showing old versions of components. When not enabling "Debug JS Remotely", or when letting Chrome handle the...

Eventually got it fixed by removing the RND app support files _(which contains a cache folder)_: ``` rm -rf ~/Library/Application\ Support/React\ Native\ Debugger/ ```

Nothing official on the Standards Position website, but there is this issue that has no response yet: https://github.com/mozilla/standards-positions/issues/531

Thanks for this PR. Can't quite follow why this is needed though, as including the `composer.lock` file [is not actively discouraged](https://getcomposer.org/doc/02-libraries.md#lock-file). > For your library you may commit the `composer.lock`...

I’m open to a PR that fixes this.

Building further upon @alexpeattie's code: using Custom Properties you can set a different start number. ```css code { counter-reset: step; counter-increment: step calc(var(--start, 1) - 1); } ``` ```html …...

Please check [the included multilang demo](https://github.com/bramus/router/blob/master/demo-multilang/index.php) files, as they provide what you're willing to do. As for `mount()` itself: I'll gladly accept a PR that provides this.

For the first part of your question (the logging part): Don't forget that the current URI can be found in `$_SERVER['REQUEST_URI']`. Combined with a [Before Router Middleware](https://github.com/bramus/router#before-router-middlewares) you can log...

Reopening, didn't get into the 2nd part of the question … oops 😊

FYI: tests are failing: ``` $ composer test > ./vendor/bin/phpunit --colors=always Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /Users/bramus/repos/projects/php-router/vendor/phpunit/phpunit/src/Util/Getopt.php on line 38...