Helmut Hummel

Results 101 comments of Helmut Hummel

While at it, the following should be fixed as well: https://github.com/TYPO3/Fluid/blob/ae2d3d7ac201046275418c876fb82b63759678b1/src/Core/Variables/StandardVariableProvider.php#L258 ```diff - preg_match_all('/(\{.*\})/', $propertyPath, $matches); + preg_match_all('/(\{[^}]*\})/', $propertyPath, $matches); ``` which fixes `{foo.{bar}.{baz}}`

That is implemented (optionally) in 3.x (and partly in 2.x)

uhm sorry. remembered (and re-read) this ticket wrong. It is not implemented of course. I have no immediate plans in creating this feature, especially because I don't have a need...

I can not reproduce with `Composer version 2.3.6 2022-06-01 21:57:13`, `PHP 7.4.29 (cli)` and the following composer.json: ```json { "require": { "helhum/dotenv-connector": "^3.0", "helhum/typo3-console": "^7.1" }, "config": { "allow-plugins": {...

I wondered, why it works for the typo3/testing-framwork and had a closer look into it. It works there, because `->setRequestType` is not called for unit test bootstrap. Here is what...

@codegm Thanks a lot for taking the time to create this PR. Can you elaborate in what scenario this header is not sent and you run into issues? Could be...

Thanks for the report. Can you elaborate a bit more? * How exactly do you register the command? * What dependencies are you injecting into your command? * Are you...

Never mind. Please verify if #1074 fixes the issue for you. Thanks again for the detailed report! Got me on the right track eventually

> It must be possible that the **core** delivers file objects to handle assets no matter where stored. I agree. However, that core currently can't do that (without relying on...

I would say, that deprecating the StaticFilesProcessor is the only viable option here.