https://www.drupal.org/docs/updating-drupal/migrate-composer-project-for-drupal-earlier-than-880
38 lines
667 B
Plaintext
38 lines
667 B
Plaintext
# Ignore directories generated by Composer
|
|
/drush/contrib/
|
|
/vendor/
|
|
/web/core/
|
|
/web/modules/contrib/
|
|
/web/themes/contrib/
|
|
/web/profiles/contrib/
|
|
/web/libraries/
|
|
|
|
# Ignore sensitive information
|
|
/web/sites/*/settings.php
|
|
/web/sites/*/settings.local.php
|
|
/web/sites/*/services*.yml
|
|
|
|
# Ignore Drupal's file directory
|
|
/web/sites/*/files/
|
|
|
|
# Ignore SimpleTest multi-site environment.
|
|
/web/sites/simpletest
|
|
|
|
# Ignore files generated by PhpStorm
|
|
/.idea/
|
|
|
|
# Ignore .env files as they are personal
|
|
/.env
|
|
/.csslintrc
|
|
/.eslintignore
|
|
/.eslintrc.json
|
|
/.ht.router.php
|
|
/.htaccess
|
|
/INSTALL.txt
|
|
/README.txt
|
|
/autoload.php
|
|
/example.gitignore
|
|
/index.php
|
|
/robots.txt
|
|
/update.php
|
|
/web.config |