Artur Weigandt

Results 216 comments of Artur Weigandt

@nebur81 Thanks, I've updated the issue description.

What do you think about introducing a new `src` folder, into which the old code is then gradually moved. In this folder then PSR-12 apply. At the same time one...

I have worked on several projects where the conversion to namespaces happened in several steps. It is definitely possible to split them into many smaller steps. Twig is a very...

I had the same problem with `autoload:` in `behat.yml`. I decided to simply use my composer.json with PSR-4: **composer.json** ``` "autoload": { "psr-4": { "My\\Namespace\\": "src/" } } ``` **src/FeatureContext.php**...

As a workaround I'm using `tmpfile()` to create a temporary file for the Behat output. ```php $outputFile = tmpfile(); $output = new \GuzzleHttp\Psr7\CachingStream( \GuzzleHttp\Psr7\stream_for($outputFile) ); $input = new StringInput(sprintf( '--suite...

@rejas I tried to used version 0.7.2, but it isn't published on npmjs.org, see `$ npm view imagelightbox`

I don't have a touchscreen laptop, but a user of my site reported this bug with v0.5.4. I've already tried v0.7.2 out with the github url in the package.json, but...

Great! :tada: I will update as far as I can and will report the feedback.

Is there interest in being able to use the library as a PSR-18 HTTP client? The basis for this would be a PSR-7 implementation and I would be interested in...

Thanks for the invitation, but I'm afraid my work schedule won't allow me to have an in-person call. My biggest question to start with a first draft is how and...