这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ It has been extracted as a separate project to make maintenance easier and enabl
* composer-unused - [Show unused packages by scanning your code](https://github.com/icanhazstring/composer-unused)
* dephpend - [Detect flaws in your architecture](https://dephpend.com/)
* deprecation-detector - [Finds usages of deprecated code](https://github.com/sensiolabs-de/deprecation-detector)
* deptrac - [Enforces dependency rules between software layers](https://github.com/sensiolabs-de/deptrac)
* deptrac - [Enforces dependency rules between software layers](https://github.com/qossmic/deptrac)
* diffFilter - [Applies QA tools to run on a single pull request](https://github.com/exussum12/coverageChecker)
* doctrine-psalm-plugin - [Stubs to let Psalm understand Doctrine better](https://github.com/weirdan/doctrine-psalm-plugin)
* ecs - [Sets up and runs coding standard checks](https://github.com/Symplify/EasyCodingStandard)
Expand Down Expand Up @@ -66,6 +66,7 @@ It has been extracted as a separate project to make maintenance easier and enabl
* phpstan-doctrine - [Doctrine extensions for PHPStan](https://github.com/phpstan/phpstan-doctrine)
* phpstan-ergebnis-rules - [Additional rules for PHPstan](https://github.com/ergebnis/phpstan-rules)
* phpstan-exception-rules - [PHPStan rules for checked and unchecked exceptions](https://github.com/pepakriz/phpstan-exception-rules)
* phpstan-larastan - [Separate installation of phpstan for larastan](https://github.com/phpstan/phpstan)
* phpstan-phpunit - [PHPUnit extensions and rules for PHPStan](https://github.com/phpstan/phpstan-phpunit)
* phpstan-strict-rules - [Extra strict and opinionated rules for PHPStan](https://github.com/phpstan/phpstan-strict-rules)
* phpstan-symfony - [Symfony extension for PHPStan](https://github.com/phpstan/phpstan-symfony)
Expand Down
16 changes: 15 additions & 1 deletion resources/phpstan.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,28 @@
"test": "composer global bin phpstan show pepakriz/phpstan-exception-rules",
"tags": ["phpstan"]
},
{
"name": "phpstan-larastan",
"summary": "Separate installation of phpstan for larastan",
"website": "https://github.com/phpstan/phpstan",
"command": {
"composer-bin-plugin": {
"package": "phpstan/phpstan",
"namespace": "larastan",
"links": {"%target-dir%/phpstan-larastan": "phpstan"}
}
},
"test": "phpstan-larastan --version",
"tags": ["phpstan"]
},
{
"name": "larastan",
"summary": "PHPStan extension for Laravel",
"website": "https://github.com/nunomaduro/larastan",
"command": {
"composer-bin-plugin": {
"package": "nunomaduro/larastan",
"namespace": "phpstan"
"namespace": "larastan"
}
},
"test": "composer global bin phpstan show ergebnis/phpstan-rules",
Expand Down