From a8fbb72163f1f210eddbb7530231e96bc8d478ee Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 21 Jul 2024 08:47:29 +0200 Subject: [PATCH] chore: update .gitignore to exclude composer.phar Adding composer.phar to .gitignore to prevent the inclusion of the Composer binary in the repository. This ensures local dependencies are not accidentally committed, promoting a cleaner codebase. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d66574f..9244c67 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ i18n/*/LC_MESSAGES/*.mo .phpunit.result.cache .git/ assets/ +composer.phar