Where to find help #7260
|
Hello Folks, im trying to upgrade a very old php5 site to run under php8. I got rector installed with composer under Win10. It kinda works: My testfile which only includes an echo "Hello World!", is getting processed, but then quits with: Yes, there is no error attached (after the dot), it just quits... My rector.php looks like this: `use Rector\Config\RectorConfig; return static function (RectorConfig $rectorConfig): void { };` So, my Question is: Where do I start to find a solution? Is there a Forum, Stackoverflow (the Rector section is tiny and dead it seems), where I could read a bit more or get more examples of the general setup? Cheers, |
Replies: 1 comment 2 replies
|
That's seems parallel process, could you try with disable parallel: $rectorConfig->disableParallel();and see if it is working? I don't have windows10 at my local dev, so can't test the exact environment. We need the exact step by step to reproduce the issue, (the file, the config, the command that run), better to use Github repository with github action running. You may can create reproducible repository with Github action with windows for it https://github.blog/changelog/2022-01-11-github-actions-jobs-running-on-windows-latest-are-now-running-on-windows-server-2022/ |
That's seems parallel process, could you try with disable parallel:
and see if it is working?
I don't have windows10 at my local dev, so can't test the exact environment.
We need the exact step by step to reproduce the issue, (the file, the config, the command that run), better to use Github repository with github action running.
You may can create reproducible repository with Github action with windows for it https://github.blog/changelog/2022-01-11-github-actions-jobs-running-on-windows-latest-are-now-running-on-windows-server-2022/