-
This was mentioned in one of the reviews and your response was that it should work with Docker. Please provide instructions on how to do this? I am running DDev under WSL. When I run this plugin it is clearly trying to execute on the WSL host. A way to customize the artisan command would be useful or if it there is an option to defer to Laravel idea plugin artisan command configuration. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It's not actually using The PHP executable that is used is the one you've set up as the php interpreter for your project in your IDE settings. If you've set that up and the path mappings are correct, the tinker plugin will work through that. If you want to have it set up with Docker, you can do it with this :) |
Beta Was this translation helpful? Give feedback.
It's not actually using
php artisan tinker
but the tinker init code runs most of what the tinker command does.The PHP executable that is used is the one you've set up as the php interpreter for your project in your IDE settings. If you've set that up and the path mappings are correct, the tinker plugin will work through that. If you want to have it set up with Docker, you can do it with this :)