• Stars
    star
    165
  • Rank 220,549 (Top 5 %)
  • Language
    Kotlin
  • License
    Apache License 2.0
  • Created about 12 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Compatibility verification tool for IntelliJ Platform plugins

intellij-plugin-verifier

official JetBrains project Twitter Follow Slack

IDE Diff Builder IntelliJ Feature Extractor IntelliJ Plugin Structure IntelliJ Plugin Verifier Plugins Verifier Service

IntelliJ Plugin Verifier checks the binary compatibility between IntelliJ-based IDE builds and IntelliJ Platform plugins.

This tool is useful because plugin authors often specify a wide [since; until] compatibility range but compile a plugin against only a specific IDE from the range. The IntelliJ Platform API can occasionally change between releases, so binary incompatibilities may arise, leading to NoClassDefFoundError, NoSuchMethodError, and similar exceptions at runtime.

Note

In most cases, intellij-plugin-verifier will be used via runPluginVerifier task from Gradle IntelliJ Plugin, see Integration.

Example problems the Plugin Verifier can detect:

  1. Plugin references a class com.example.Foo, which is not available in the IDE. This can happen if the plugin was compiled against IDE v1.0, and the class com.example.Foo was removed in IDE v2.0.
  2. Plugin references a missing method of the IDE's class, which leads to NoSuchMethodError at runtime.
  3. Many other binary incompatibilities as listed in Java Specification | Binary Compatibility.
  4. Missing plugin dependencies, for example, when plugin A depends on plugin B, but plugin B doesn't have a build that’s compatible with this IDE. It means that the user cannot install plugin A as the IDE requires all dependent plugins to be installed.

Table of Contents

Installation

Download the latest available verifier-cli-<version>-all.jar from Maven Repository, or use the below curl script:

curl -L --output verifier-all.jar https://packages.jetbrains.team/maven/p/intellij-plugin-verifier/intellij-plugin-verifier/org/jetbrains/intellij/plugins/verifier-cli/<version>/verifier-cli-<version>-all.jar

Where <version> is the latest version, which you can find in the package page.

It is also possible to reply on the GitHub API that provides the latest available release as JSON response, which can be handled using jq command, like:

curl -s https://api.github.com/repos/JetBrains/intellij-plugin-verifier/releases/latest \
    | jq -r '.assets[].browser_download_url' \
    | xargs curl -L --output verifier-all.jar

Options

The Plugin Verifier can be run using the command line:

java -jar verifier-all.jar [Command] [Options]

Command is one of check-plugin, check-ide or check-trunk-api.

Plugin Verifier versions starting with 1.260 require Java 11, before that Java 8 was enough.

Results

All the verification results are printed and saved in the following ways:

  1. The results are saved to <verification-$timestamp> directory (can be changed with -verification-reports-dir option). The layout of files beneath this directory is as follows. The format of individual files is not specified. Basically, the files contain human-readable sentences.

    <verification reports dir>/
        <IDE version #1>/
            plugins/
                <ID of plugin #1/
                    <Version of plugin #1>/
                        <... report files ...>
                <ID of plugin #2>/
                    ...
        <IDE version #2>/
            plugins/
                ...
    
    File Description Exists if
    verification-verdict.txt Human-readable verification verdict. Always
    dependencies.txt Dependencies of the plugin used during verification. Plugin is valid
    compatibility-warnings.txt Compatibility warnings of this plugin with the IDE. > 0
    compatibility-problems.txt Compatibility problems of this plugin with the IDE. > 0
    deprecated-usages.txt Descriptions of "Deprecated API is used" cases. > 0
    experimental-api-usages.txt Descriptions of "Experimental API is used" cases. > 0
    internal-api-usages.txt Descriptions of "Internal API is used" cases. > 0
    override-only-usages.txt Descriptions of "Override-only API is used incorrectly" cases. > 0
    non-extendable-api-usages.txt Descriptions of "Non-extendable API is used incorrectly" cases. > 0
    plugin-structure-warnings.txt Descriptions of plugin's own problems, which are not related to IDE compatibility. > 0
    invalid-plugin.txt Description of the invalid plugin error, in case the plugin is invalid. Plugin is invalid

    Note! If you are implementing integration with the Plugin Verifier, you may check the presence of corresponding files to distinguish "successful" and "failed" verifications.

  2. If the -teamcity (-tc) option is specified, the results are printed in TeamCity Tests Format. To choose a presentation type, specify the -tc-grouping (-g) option to either plugin, to group by each plugin, or problem_type, to group by the problem.

  3. If -teamcity isn't specified, the results are printed to console.

Commands

check-ide

This command is used to check IDE build against a set of plugins.

check-ide
    <IDE>
    [-runtime-dir | -r <file>]
    [-plugins-to-check-file | -ptcf <file>]
    [-plugins-to-check-all-builds | -p-all < ':'-separated list>]
    [-plugins-to-check-last-builds | -p-last < ':'-separated list>]
    [-excluded-plugins-file | -epf <file> ]
    [-team-city | -tc ]
    [-tc-grouping | -g ]
    [-external-prefixes <':'-separated list>]
    [-dump-broken-plugin-list | -d]
    [-ignored-problems | -ip <file>]
    [-keep-only-problems | -kop <file>]

<IDE> is either a path to local IDE installation, or an IDE pattern (see bellow in the common options)

If no plugins are explicitly specified, then all compatible plugins in the Plugin Repository will be verified (options).

Examples

Check IDEA Ultimate #162.1121.32 against all plugins listed in pluginsToCheck.txt:

java -jar verifier-all.jar -runtime-dir /home/user/.jdks/corretto-11.0.8 -team-city -tc-grouping problem_type -excluded-plugins-file ignorePlugins.txt -plugins-to-check-file pluginsToCheck.txt -dump-broken-plugin-list actualBroken.txt check-ide /tmp/IU-162.1121.32

Check IDEA Ultimate 162.1121.32 against all versions of Kotlin and NodeJs plugins and the last version of the PHP plugin:

java -jar verifier-all.jar -runtime-dir /home/user/.jdks/corretto-11.0.8 -plugins-to-check-all-builds org.jetbrains.kotlin:NodeJS -plugins-to-check-last-builds com.jetbrains.php check-ide /tmp/IU-162.1121.32

check-plugin

This command is used to check one or more plugins against one or more IDEs (options).

check-plugin
    <plugins>
    <IDE> [<IDE>]*
    [-runtime-dir | -r <file>]
    [-team-city | -tc ]
    [-tc-grouping | -g ]
    [-external-prefixes <':'-separated list>]

<plugins> is either <plugin path> or '@<file>' with a list of plugin paths to verify, separated by a newline.

<IDE> is either a path to local IDE installation, or an IDE pattern (see bellow in the common options)

Examples

Check Kotlin plugin against IDEA Ultimate 162.2032.8, 163.1024, and 163.7277:

java -jar verifier-all.jar -runtime-dir /home/user/.jdks/corretto-11.0.8 check-plugin /tmp/Kotlin /tmp/IU-162.2032.8 /tmp/IU-163.1024 /tmp/IU-163.7277

check-trunk-api

This command tracks API Changes between two IDE builds: a release and a trunk.

Note that its purpose is to detect incompatibilities between two IDE builds, not to detect all the plugins' own problems.

Given the release IDE build, all plugins' versions for release IDE will be verified with both the release and trunk and only new problems with a trunk will be reported.

For clarity, here is an example of the command:

check-trunk-api
    -r /home/user/.jdks/corretto-11.0.8
    -subsystems-to-check without-android
    -team-city
    -jetbrains-plugins-file all-jetbrains-plugins.txt
    -release-jetbrains-plugins release-plugins
    -trunk-jetbrains-plugins trunk-plugins
    -major-ide-path IU-173.4548.28
    IU-181.3741.2

The IU-173.4548.28 is IDEA Ultimate 2017.3.4 build, and IU-181.3741.2 is some IDE built from the master. This command will do the following:

  1. Take all plugins from the Plugin Repository compatible with IU-173.4548.28 and run the verification against IU-173.4548.28.
  2. Take the same versions of the plugins and verify them against IU-181.3741.2, even if those plugins' [since; until] compatibility ranges don't include the IU-181.3741.2.
  3. Report problems that are present in IU-181.3741.2 but not present in IU-173.4548.28.

There are the following points to mention:

  1. IntelliJ API is considered to consist of all the classes bundled to IDE, all its bundled plugins, and all the JetBrains-developed plugins compiled from the same sources revision. Those plugins are not bundled into IDE distribution but are available locally after the IDE build finishes. The plugins are typically uploaded to the Plugin Repository when a new release IDE gets out, but it cannot be valid for intermediate builds.
    • -jetbrains-plugins-file all-jetbrains-plugins.txt points to a file containing IDs of all JetBrains plugins built from the same sources as the IDE, like (NodeJS, Pythonid, Docker).
    • -release-jetbrains-plugins release-plugins points to a directory containing all the plugins built along with the release IDE. Plugins can be in the form of .jar, .zip, or directories.
    • -trunk-jetbrains-plugins trunk-plugins points to a directory containing all the plugins built along with the trunk IDE.
  2. -subsystems-to-check without-android specifies that the Plugin Verifier should not show problems related to Android support.

Here is the full syntax of the command:

check-trunk-api <trunk IDE>
    [-runtime-dir | -r <file>]
    [-major-ide-path | -mip <file>]
    [-major-ide-version | -miv <IDE version>]
    [-external-prefixes <':'-separated list>]
    [-subsystems-to-check | -subsystems]
    [-release-jetbrains-plugins | -rjbp <path>]
    [-trunk-jetbrains-plugins | -tjbp <path>]
    [-team-city | -tc ]

Specific options

  • -major-ide-path (-mip)

    The path to the major IDE release build to compare API problems of the trunk (master) IDE build.

  • -major-ide-version (-miv)

    The IDE version with which to compare API problems. This IDE will be downloaded from the IntelliJ Release repository.

  • -release-jetbrains-plugins (-rjbp)

    The root of the local plugin repository containing JetBrains plugins compatible with the release IDE. The local repository is a set of non-bundled JetBrains plugins built from the same sources revision. The verifier will read the plugin descriptors from every plugin-like file under the specified directory. During the verification, the JetBrains plugins will be taken from the local repository, if present. Otherwise, they will be fetched from the public repository.

  • -trunk-jetbrains-plugins (-tjbp) The same as --release-local-repository but specifies the directory containing plugins built for the trunk IDE.

Common Options

  • <IDE>

    The path to a local IDE installation or a pattern in form [latest-release-IU] or [latest-IU] (latest EAP).

    In the latter case the IDE will be downloaded to a temp directory <temp dir>/<IDE version>. You can change the <temp dir> part with -Dintellij.plugin.verifier.download.ide.temp.dir=<custom path> system property.

  • -verification-reports-dir (-vrd)

    The path to the directory where verification reports will be saved. By default, it is equal to <current working dir>/verification-<timestamp>.

  • -runtime-dir (-r)

    The path to the directory containing Java runtime jar. If not specified, the JDK from 'JAVA_HOME' will be chosen.

  • -external-prefixes (-ex-prefixes)

    The prefixes of classes from the external libraries. The Plugin Verifier will not report 'No such class' for classes of these packages.

  • -plugins-to-check-all-builds (-p-all)

    The plugin IDs to check with the IDE. The plugin verifier will check ALL compatible plugin builds.

  • -plugins-to-check-last-builds (-p-last)

    The plugin IDs to check with the IDE. The plugin verifier will check the LAST plugin build only.

  • -team-city (-tc)

    Specify this flag if you want to print the TeamCity compatible output on stdout.

  • -tc-grouping (-g)

    Group the TeamCity presentation of the problems: either 'plugin' to group by each plugin or 'problem_type' to group by problem type.

  • -excluded-plugins-file (-epf)

    File with a list of excluded plugin builds. The verifier will not verify such updates even if they are compatible with the IDE. File with list of excluded plugin builds (e.g. '/lib/resources.jar/brokenPlugins.txt').

  • -offline

    Specify this flag if the Plugin Verifier must use only locally downloaded dependencies of plugins and must avoid making HTTP requests.

  • -dump-broken-plugin-list (-d)

    File to dump broken plugin ids. The broken plugins are those which contain at least one problem as a result of the verification.

  • -plugins-to-check-file (-ptcf)

    A file that contains a list of plugins to check. Each line of the file is either:

    • plugin_id (check ALL builds of the plugin)
    • $plugin_id' (check only the LAST build of the plugin)
  • -subsystems-to-check (-subsystems)

    Specifies which subsystems of IDE should be checked. Available options: all (default), android-only, without-android.

  • -ignore-problems (-ip)

    A file that contains a list of problems that will be ignored in report. The file must contain lines in form <plugin_xml_id>:<plugin_version>:<problem_description_regexp_pattern>

  • -keep-only-problems (-kop)

    A file that contains patterns of problems that will be reflected in report. All other problems will be ignored. The file must contain lines in form: <problem_description_regexp_pattern>

Technical details

Plugin Verifier uses the following paths for operational purposes:

  • <home-directory> - base directory for all other directories:
    • By default, it is <USER_HOME>/.pluginVerifier,
    • It can be modified via -Dplugin.verifier.home.dir JVM parameter, e.g. -Dplugin.verifier.home.dir=/tmp/verifier,
  • <plugins-directory> = <home-directory>/loaded-plugins - cache directory for downloaded plugins,
  • <extracted-directory> = <home-directory>/extracted-plugins - temporary directory used for extracting plugins that are distributed as .zip archives.

Downloading plugins

Plugins to be verified and plugins' dependencies are downloaded into <plugins-directory>. It can be reused between multiple runs of the Plugin Verifier: on the first run, all the necessary plugins will be downloaded, and on the subsequent runs, they will be taken from the cache. Note that not only the verified plugins are downloaded but also all plugins' dependencies.

Plugins are downloaded from the Plugin Repository into <plugins-directory>/<update-ID>.jar or <plugins-directory>/<update-ID>.zip, depending on the plugin's packaging type. <update-ID> is the unique ID of the plugin's version in the Plugin Repository's database. For example, Kotlin 1.2.30-release-IJ2018.1-1 has update-ID equal to 43775.

Limit size of <plugins-directory>

That's possible to limit the size of the <plugins-directory>, which is 5 GB by default. To do this, specify JVM option -Dplugin.verifier.cache.dir.max.space=<max-space-MB>. The Plugin Verifier will remove the least recently used plugins from the cache as soon as the occupied space reaches the limit.

Extracting .zip-ed plugins

Plugins packaged in .zip archives are extracted into <extracted-directory>/<temp-dir> before verifying these plugins starts. This is necessary to speed up the verification, which needs to do many searches of class-files.

Integration

The most straightforward way of integrating the Plugin Verifier with your project is using the Gradle IntelliJ Plugin, which provides runPluginVerifier configurable task.

If you're not using Gradle within your project, there are predefined third-party actions available in the GitHub Actions Marketplace that automate the plugin verification process.

Read more about possible integration options: Verifying Plugin Compatibility

Feedback

Please report issues to YouTrack: https://youtrack.jetbrains.com/issues/MP (MP stands for Marketplace)

  • Check if there is already a similar ticket present.
  • If not, create a New Issue.
  • Type the issue Summary and Description.
  • Select Subsystem to be Plugin Verifier - YouTrack will automatically assign a responsible developer.
  • If the issue is a feature request, you may select Type to be Feature.

Thank you in advance for reporting issues, providing feedback, and making the Plugin Verifier better!

Slack

There is also a dedicated Slack channel available: #intellij-plugin-verifier.

The JetBrains Platform Slack community is a place where you can talk with other plugin developers and JetBrains employees about plugin and extension development.

More Repositories

1

kotlin

The Kotlin Programming Language.
Kotlin
45,725
star
2

intellij-community

IntelliJ IDEA Community Edition & IntelliJ Platform
16,452
star
3

compose-multiplatform

Compose Multiplatform, a modern UI framework for Kotlin that makes building performant and beautiful user interfaces easy and enjoyable.
Kotlin
14,677
star
4

JetBrainsMono

JetBrains Mono – the free and open-source typeface for developers
Shell
10,126
star
5

ideavim

IdeaVim – A Vim engine for JetBrains IDEs
Kotlin
7,980
star
6

Exposed

Kotlin SQL Framework
Kotlin
7,869
star
7

kotlin-native

Kotlin/Native infrastructure
Kotlin
7,048
star
8

ring-ui

A collection of JetBrains Web UI components
TypeScript
3,555
star
9

kotlinconf-app

KotlinConf Schedule Application
Kotlin
2,830
star
10

intellij-platform-plugin-template

Template repository for creating plugins for IntelliJ Platform
Kotlin
2,791
star
11

skija

Java bindings for Skia
Java
2,605
star
12

create-react-kotlin-app

Create React apps using Kotlin with no build configuration
JavaScript
2,477
star
13

projector-docker

Run JetBrains IDEs remotely with Docker
Shell
2,209
star
14

intellij-plugins

Open-source plugins included in the distribution of IntelliJ IDEA Ultimate and other IDEs based on the IntelliJ Platform
Java
2,002
star
15

svg-sprite-loader

Webpack loader for creating SVG sprites.
JavaScript
1,998
star
16

skiko

Kotlin MPP bindings to Skia
C++
1,685
star
17

compose-multiplatform-ios-android-template

Compose Multiplatform iOS+Android Application project template
Kotlin
1,563
star
18

MPS

JetBrains Meta programming System
JetBrains MPS
1,500
star
19

lets-plot

Multiplatform plotting library based on the Grammar of Graphics
Kotlin
1,446
star
20

kotlin-web-site

The Kotlin programming language website
JavaScript
1,413
star
21

intellij-platform-gradle-plugin

Gradle plugin for building plugins for IntelliJ-based IDEs
Kotlin
1,377
star
22

phpstorm-stubs

PHP runtime & extensions header files for PhpStorm
PHP
1,297
star
23

kotlin-wrappers

Kotlin wrappers for popular JavaScript libraries
Kotlin
1,294
star
24

idea-gitignore

.ignore support plugin for IntelliJ IDEA
Kotlin
1,287
star
25

projector-server

Server-side library for running Swing applications remotely
Kotlin
1,230
star
26

resharper-unity

Unity support for both ReSharper and Rider
C#
1,199
star
27

intellij-sdk-docs

IntelliJ SDK Platform Documentation
Markdown
1,181
star
28

xodus

Transactional schema-less embedded database used by JetBrains YouTrack and JetBrains Hub.
Java
1,155
star
29

intellij-scala

Scala plugin for IntelliJ IDEA
Scala
1,137
star
30

kotless

Kotlin Serverless Framework
Kotlin
1,124
star
31

JetBrainsRuntime

Runtime environment based on OpenJDK for running IntelliJ Platform-based products on Windows, macOS, and Linux
Java
1,118
star
32

intellij-sdk-code-samples

Mirror of the IntelliJ SDK Docs Code Samples
Java
980
star
33

js-graphql-intellij-plugin

GraphQL language support for WebStorm, IntelliJ IDEA and other IDEs based on the IntelliJ Platform.
Java
879
star
34

android

Android Plugin for IntelliJ IDEA. This repository is a subset of https://git.jetbrains.org/?p=idea/android.git cut according to GitHub file size limitations.
Kotlin
863
star
35

projector-client

Common and client-related code for running Swing applications remotely
Kotlin
813
star
36

projector-installer

Install, configure and run JetBrains IDEs with Projector Server on Linux or in WSL
Python
810
star
37

Grammar-Kit

Grammar files support & parser/PSI generation for IntelliJ IDEA
Java
688
star
38

Arend

The Arend Proof Assistant
Java
676
star
39

amper

Amper - a build and project configuration tool with a focus on the user experience and the IDE support
Kotlin
621
star
40

markdown

Markdown parser written in kotlin
Kotlin
617
star
41

jediterm

Pure Java Terminal Emulator. Works with SSH and PTY.
Java
611
star
42

compose-multiplatform-template

Compose Multiplatform Application project template
Kotlin
603
star
43

jewel

An implementation of the IntelliJ look and feels in Compose for Desktop
Kotlin
580
star
44

Nitra

Public Nitra repository
Nemerle
549
star
45

lincheck

Framework for testing concurrent data structures
Kotlin
520
star
46

intellij-micropython

Plugin for MicroPython devices in PyCharm and IntelliJ
Python
482
star
47

kotlin-playground

Self-contained component to embed in websites for running Kotlin code
JavaScript
422
star
48

colorSchemeTool

Python
396
star
49

compose-multiplatform-desktop-template

Compose Multiplatform Desktop Application project template
Kotlin
393
star
50

lets-plot-kotlin

Grammar of Graphics for Kotlin
Kotlin
389
star
51

Qodana

📝 Source repository of Qodana Help
388
star
52

rd

Reactive Distributed communication framework for .NET, Kotlin, C++. Inspired by Rider IDE.
C#
373
star
53

java-annotations

Annotations for JVM-based languages.
Java
362
star
54

phpstorm-attributes

PhpStorm specific attributes
PHP
357
star
55

Unity3dRider

Unity JetBrains Rider integration
348
star
56

godot-support

C#
339
star
57

pty4j

Pty for Java
Java
338
star
58

resharper-fsharp

F# support in JetBrains Rider
F#
320
star
59

phpstorm-workshop

Code for the PhpStorm workshop
PHP
287
star
60

awesome-pycharm

A curated list of resources for learning and using PyCharm, a Python IDE from JetBrains
271
star
61

web-types

JSON standard for documenting web component libraries for IDEs, documentation generators and other tools
TypeScript
270
star
62

meta-runner-power-pack

A set of Meta-runners for TeamCity
PowerShell
256
star
63

inspection-plugin

Gradle plugin to launch IDEA inspections
Kotlin
255
star
64

youtrack-mobile

A iOS and Android client for YouTrack
TypeScript
255
star
65

gradle-changelog-plugin

Plugin for parsing and managing the Changelog in a "keep a changelog" style.
Kotlin
252
star
66

ideolog

Interactive viewer for '.log' files.
Kotlin
250
star
67

qodana-action

⚙️ Scan your Go, Java, Kotlin, PHP, Python, JavaScript, TypeScript, .NET projects at GitHub with Qodana. This repository contains Qodana for Azure, GitHub, CircleCI and Gradle
JavaScript
234
star
68

gradle-idea-ext-plugin

Plugin to store IJ settings in gradle script
Groovy
227
star
69

php-timeline

Notable events of PHP history
222
star
70

resharper-rider-samples

Simple interactive exercises to help learn ReSharper and Rider
C#
221
star
71

la-clojure

Clojure plugin for IntelliJ IDEA
Java
220
star
72

kotlin-compiler-server

Server for executing kotlin code
Kotlin
216
star
73

jdk8u_jdk

Java
210
star
74

jcef

A simple framework for embedding Chromium-based browsers into Java-based applications.
Java
206
star
75

pest-intellij

The official Pest Plugin for PhpStorm / IntelliJ IDEA
Kotlin
195
star
76

youtrack-workflows

YouTrack Custom Workflow Repository
JavaScript
194
star
77

psiviewer

PSI Viewer for IntelliJ IDEA plugin development
Java
175
star
78

svg-mixer

Node.js toolset for generating & transforming SVG images and sprites in modern way
JavaScript
173
star
79

compose-for-web-demos

Historical repository of early Compose for Web effort.
171
star
80

phpstorm-docker-images

Pre-configured Docker images used by PhpStorm team
Dockerfile
170
star
81

rider-efcore

Entity Framework Core UI plugin for JetBrains Rider
Kotlin
169
star
82

jetbrains_guide

JetBrains Guides where Developer Advocacy and the community share ideas.
CSS
168
star
83

kotlin-web-demo

Online mini-IDE for Kotlin
Kotlin
168
star
84

intellij-samples

Code that demonstrates various IntelliJ IDEA features
Java
163
star
85

jdk8u_hotspot

C++
159
star
86

resharper-rider-plugin

https://www.jetbrains.com/help/resharper/sdk/
PowerShell
158
star
87

qodana-cli

🔧 JetBrains Qodana’s official command line tool
Go
154
star
88

teamcity-messages

Python Unit Test Reporting to TeamCity
Python
139
star
89

ruby-type-inference

Dynamic definitions and types provider for ruby static analysis
Kotlin
136
star
90

educational-plugin

Educational plugin to learn and teach programming languages such as Kotlin, Java, Python, JavaScript, and others right inside of JetBrains IntelliJ Platform based IDEs.
Kotlin
134
star
91

resharper-angularjs

ReSharper plugin for AngularJS support
JavaScript
134
star
92

clion-remote

134
star
93

golandtipsandtricks

This is an ever evolving repository for GoLand Tips&Tricks
Go
132
star
94

python-skeletons

The python-skeltons repo is deprecated: use PEP 484 and Typeshed instead
Python
132
star
95

clion-wsl

Shell
130
star
96

phpstorm-phpstan-plugin

PHPStan plugin for PhpStorm
Java
130
star
97

teamcity-docker-samples

TeamCity docker compose samples
Shell
128
star
98

phpstorm-psalm-plugin

Psalm plugin for PhpStorm
Java
126
star
99

jdk8u

Shell
123
star
100

YouTrackSharp

.NET Standard 2.0 Library to access YouTrack API.
C#
123
star