Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow executing some composer plugins in dev mode #53

Merged
merged 2 commits into from Jul 25, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion composer.json
Expand Up @@ -57,6 +57,11 @@
"infection": "XDEBUG_MODE=coverage roave-infection-static-analysis-plugin"
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"icanhazstring/composer-unused": true,
"phpro/grumphp": true
}
}
}
1 change: 0 additions & 1 deletion src/Exception/InvalidStrategyTypeGiven.php
Expand Up @@ -8,7 +8,6 @@

final class InvalidStrategyTypeGiven extends InvalidArgumentException
{

public static function withType(string $strategyType): self
{
return new self(sprintf('Unknown toggle strategy type %s given.', $strategyType));
Expand Down