-
-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using studio together with PhpStorm #111
Comments
Hmm, you should not have dependencies separately installed for your lib. Whole point of composer is to centralize dep mgmt, so it would install everything needed on parent project |
I will try to explain with an example. |
No. Like said before, your package should not have it's own runtime At the same time, I'm still confused about require-dev dependencies, which could and probably should exist independently of application's. Yet, there's no resolution or response at composer/composer#4522 (comment) Dev dependencies, like linting (PHPCS and friends) are the only reason my package does have its own |
Then I'm confused about how you developing the library as separate project without |
Yep, that is indeed an issue. It frequently happens, if you develop your composer package integrated in another package. There is no real solution yet, unfortunately. For the record, the issue is tracked here on Jetbrains' side: https://youtrack.jetbrains.com/issue/WI-33248 |
Hello! Actually I'm not about a bug, but this applies to the simultaneous use of the studio and phpstorm. When I create a symlink to an existing package using studio, it contains a vendor folder with its own dependencies, unlike any other non-local package. That a reason why phpstorm spends a lot of time to index that folder and slows down after, because all nested classes now are duplicated in multiple locations.
I tried to mark
project/vendor/me/package/vendor
directory as excluded in phpstorm, but it doesn't help ever or helps partially. If I use studio to connect more than one package, work becomes hell, because phpstorm stucks every few seconds.Has anyone encountered a similar problem and how was it solved?
The text was updated successfully, but these errors were encountered: