Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.Haehnchen:idea-php-symfony2-plugin:0.23.213'
}
dependencies {
implementation("com.github.Haehnchen:idea-php-symfony2-plugin:0.23.213")
}
<dependency>
<groupId>com.github.Haehnchen</groupId>
<artifactId>idea-php-symfony2-plugin</artifactId>
<version>0.23.213</version>
</dependency>
libraryDependencies += "com.github.Haehnchen" % "idea-php-symfony2-plugin" % "0.23.213"
:dependencies [[com.github.Haehnchen/idea-php-symfony2-plugin "0.23.213"]]
| Key | Value | |----------------------|-------------------------------------------| | Plugin Url | https://plugins.jetbrains.com/plugin/7219 | | ID | fr.adrienbrault.idea.symfony2plugin | | Documentation | https://espend.de/phpstorm/plugin/symfony | | Changelog | CHANGELOG | | Build and Deployment | MAINTENANCE |
Settings -> Plugins -> Browse repositories
and then search for Symfony
.Since PhpStorm 2022.1 this plugin is marked a "Freemium".
A license can be bought at JetBrains Marketplace
View > Tool Windows > Gradle
idea-php-symfony2-plugin > Tasks > intellij > runIde
If you are having difficulties, consult the documentation: http://confluence.jetbrains.com/display/PhpStorm/Setting-up+environment+for+PhpStorm+plugin+development
You can browse the existing issues at https://github.com/Haehnchen/idea-php-symfony2-plugin/issues
If your issue already exists, don't hesitate to add a comment to help contributors resolve the issue more easily. If your issue does not exist, open a new issue :smiley:.
Make sure to provide the maximum amount of information, such as: