1
0

.gitignore 697 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 vendor dir of Composer except PHP files
  13. vendor/*.*
  14. vendor/*/*.*
  15. vendor/*/*/*.*
  16. vendor/*/*/*/*.*
  17. vendor/*/*/*/*/*.*
  18. vendor/*/*/*/*/*/*.*
  19. vendor/**/LICENSE
  20. vendor/**/test
  21. vendor/**/tst
  22. vendor/**/tests
  23. vendor/**/build_phar.php
  24. !vendor/**/*.php
  25. vendor/bin/**
  26. # Ignore local node modules, unit testing logs, api docs and IDE project files
  27. js/node_modules/
  28. js/mocha-results.xml
  29. js/test.log
  30. tst/log/
  31. tst/ConfigurationCombinationsTest.php
  32. tst/.phpunit.result.cache
  33. .settings
  34. .buildpath
  35. .project
  36. .phpdoc
  37. .externalToolBuilders
  38. .c9
  39. /.idea/
  40. *.iml