Philip Ardery
Philip Ardery
@XjSv im not sure I totally follow your comment about .gitignore. I know most people (should) ignore vendor/. But I don't think that should prevent you from using this patch...
@XjSv I'm still confused. I believe your Drupal composer setup is pretty normal for D9 Composer downloads dependencies to vendor/. You should create a patch from vendor. This library should...
Sorry @XjSv i think you are correct and I am incorrect (conposer isn't copying files from vendor it's installing them outside of vendor from the get go) I will test...
hey @XjSv I think the best bet is for you to not use this package, and instead follow the instructions here: https://gorannikolovski.com/blog/how-to-upgrade-drupal-9-to-10#how-to-install-modules That is working for me.
@XjSv I guess I'm still confused what your actual problem is. If you are trying to patch anything pulled from composer, even if you use composer-installers to have those packages...
I do not use vendor/bin/vendor-patches I followed the instructions I linked above and that system is working well for me
thanks very much @derrabus, you're very simple addition to my pre-existing `tests/bootstrap.php` resolved the issue: ``` use Symfony\Component\ErrorHandler\ErrorHandler; set_exception_handler([new ErrorHandler(), 'handleException']); ``` I agree with you that, while simple, it...
> uh, that explains why we keep missing out on deprecation notices. We use a lot of static setups that use the kernel Damn, me too. Have I been unknowingly...
On a related note, it would be nice to be able to tell `loginUser()` which token type to user, for example `UsernamePasswordToken` instead of `TestBrowserToken`.