nervo
nervo
Typos
Thanks to debian linter :) ``` W: opcache-dashboard: spelling-error-in-description reseting resetting ```
When marshalling a block scalar, the result does not follow custom indentation. ```golang yaml.MarshalWithOptions(map[string]interface{}{ "scalar": "foo\nbar\n", }, yaml.Indent(4)) ``` expected result: ``` scalar: | foo bar ``` actual result: ```...
When marshalling a simple root sequence using `IndentSequence` the result should not be indented. ```golang yaml.MarshalWithOptions([]string{"foo", "bar", "baz"}, yaml.IndentSequence(true)) ``` expected result: ``` - foo - bar - baz ```...
Right now, environment variables are only interpreted as null when their values are "null" (as a string). `FOO_BAR=null` Can you consider using the empty string too ? `FOO_BAR=`
Fix #673 This commit https://github.com/Luracast/Restler/commit/b3ded4194057951ac96a41104f76b4b2eed62cc7 introduced a weird way to handle autoloader callables, where a simple native php function `call_user_func` can do the trick. If approved and merged, would you...
In https://github.com/Luracast/Restler/blob/master/src/AutoLoader.php#L293 i see that autoloaders methods are called statically ``` $b::$loader[1]($className) ``` If you have a look on composer (https://github.com/composer/composer/blob/f509c41280768b1d3047271ec5b50da33184d98d/src/Composer/Autoload/ClassLoader.php#L425) you can see that "loadClass" method is *NOT* static....
As far as i can see on https://hub.docker.com/r/gvalkov/tailon/tags, only a 1.0.0 image is available :)
Provide binary for alpine linux (mainly for docker support) If that's ok with you, i will do the same for other imagemin binaries, so that it won't take anymore 10...