Skip to content

Commit

Permalink
Disable autoloader optimization in default composer config
Browse files Browse the repository at this point in the history
Disable composer.json optimize-autoloader while we are in development #171

This will speed up a lot of stuff. And one can always pass the optimize-autoloader flag when running Composer commands, however there does not seem to be an inverse.
  • Loading branch information
caendesilva committed Jul 4, 2022
1 parent 4c90764 commit 85eff9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"optimize-autoloader": false,
"allow-plugins": {
"pestphp/pest-plugin": true
}
Expand Down

0 comments on commit 85eff9b

Please sign in to comment.