diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 4a3e8ac..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,6 +0,0 @@ -| Q | A -| ------------- | --- -| Is bugfix? | ✔️/❌ -| New feature? | ✔️/❌ -| Breaks BC? | ✔️/❌ -| Fixed issues | comma-separated list of tickets # fixed by the PR, if any diff --git a/015-phpstorm.md b/015-phpstorm.md index fb0fcc6..da19659 100644 --- a/015-phpstorm.md +++ b/015-phpstorm.md @@ -46,3 +46,17 @@ registerArgumentsSet( ```shell composer require --dev jetbrains/phpstorm-attributes ``` + +### Using with ComposerRequireChecker + +When [ComposerRequireChecker](https://github.com/maglnet/ComposerRequireChecker) is also used within the same package, +add involved attributes' class names to whitelist in config. For example: + +```json +{ + "symbol-whitelist": [ + "JetBrains\\PhpStorm\\ExpectedValues", + "JetBrains\\PhpStorm\\Pure" + ] +} +```