.gitignore 758 B

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