How to run/debug PHPStorm to Test Plugin
已回答
How to run/debug PHPStorm to Test Plugin instead of default intellij IDEA.
Maybe its important:
Im Using :
- Gradle
- Linux
- SDK is already PHPStorm
- Test using RunIDE Gradle-Task
Any help are welcome - Thanks
请先登录再写评论。
Use "alternativeIdePath" pointing to local IDE installation, see https://github.com/JetBrains/gradle-intellij-plugin#rundebug-ide-properties for testing.
See "
runIde.ideDirectory" description here https://jetbrains.org/intellij/sdk/docs/products/phpstorm/phpstorm.html for running sandbox instance.intellij {...
version 'LATEST-EAP-SNAPSHOT'
alternativeIdePath '/snap/phpstorm/current'
}
Yes, thanks!
Hello I am also trying to develop a new plugin that it will be working on PHPStorm I have checked the documentation and have used this https://github.com/JetBrains/intellij-platform-plugin-template Template
I have the PHP version :
I have tried everything from adding
alternativeIdePath
runIde {ideDirectory = "/Users/NAME/Library/Application Support/JetBrains/Toolbox/apps/PhpStorm/ch-0/203.7148.74/PhpStorm.app/Contents"
}
but every time I got Error, this is my first time that I try to create a phpstorm plugin.
or maybe there is any other template that suite phpstorm not intellij IDEA.
Please Help ! Thanks
@... please create a new thread and provide all necessary details, like full contents of your Gradle build file or ideally link to repository of your plugin's sources
I have created thread
https://intellij-support.jetbrains.com/hc/en-us/community/posts/360010434439-How-to-run-test-IntelliJ-Platform-Plugin-on-Phpstorm-