Skip to content
This repository has been archived by the owner on Apr 16, 2021. It is now read-only.

Commit

Permalink
add support for phpstorm
Browse files Browse the repository at this point in the history
  • Loading branch information
atomicptr authored and swsnr committed Aug 11, 2020
1 parent e001237 commit 8f21a53
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Supports:
- CLion (Toolbox, Snap)
- GoLand (Toolbox)
- PyCharm (Toolbox)
- PhpStorm (Toolbox)

## Requirements

Expand Down
7 changes: 7 additions & 0 deletions extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,13 @@ const PRODUCTS: Map<string, ProductInfo> = new Map<string, ProductInfo>(
"jetbrains-pycharm.desktop",
],
},
{
key: "phpstorm",
desktopNames: [
// Toolbox installation
"jetbrains-phpstorm.desktop",
],
},
].map((product) => [product.key, product])
);

Expand Down
1 change: 1 addition & 0 deletions find-projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
ProductInfo(key='clion', config_glob='CLion*'),
ProductInfo(key='goland', config_glob='GoLand*'),
ProductInfo(key='pycharm', config_glob='PyCharm*'),
ProductInfo(key='phpstorm', config_glob='PhpStorm*'),
]


Expand Down

0 comments on commit 8f21a53

Please sign in to comment.