Skip to content

Commit

Permalink
Add composer/installers to allow-plugins
Browse files Browse the repository at this point in the history
Composer currently fails to run an installation with the following:

```
Error: composer/installers contains a Composer plugin which is blocked by your allow-plugins config. You may add it to the list if you consider it safe.
```

This commit allows composer/installers to run by adding it to the safe list.
  • Loading branch information
kovshenin committed Nov 28, 2022
1 parent 776f6d0 commit 56e5954
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,10 @@
"scripts": {
"test": "./tests/run-tests.sh",
"check-types": "./vendor/bin/psalm"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}

0 comments on commit 56e5954

Please sign in to comment.