.gitignore 729 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Ignore server files for safety
  2. .htaccess
  3. .htpasswd
  4. cfg/conf.ini
  5. # Ignore data/
  6. data/
  7. # Ignore PhpDoc
  8. doc/*
  9. !doc/*.md
  10. # Ignore developers composer status so it isn't accidentally checked in,
  11. # see https://github.com/PrivateBin/PrivateBin/issues/84
  12. composer.lock
  13. # Ignore vendor dir of Composer except PHP files
  14. vendor/*.*
  15. vendor/*/*.*
  16. vendor/*/*/*.*
  17. vendor/*/*/*/*.*
  18. vendor/*/*/*/*/*.*
  19. vendor/*/*/*/*/*/*.*
  20. vendor/**/LICENSE
  21. vendor/**/test
  22. vendor/**/tst
  23. vendor/**/tests
  24. vendor/**/build_phar.php
  25. !vendor/**/*.php
  26. # Ignore local node modules, unit testing logs, api docs and eclipse project files
  27. js/node_modules/
  28. js/test.log
  29. tst/log/
  30. tst/ConfigurationCombinationsTest.php
  31. .settings
  32. .buildpath
  33. .project
  34. .externalToolBuilders