.gitignore 688 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Ignore build files
  2. build/*
  3. # Mac OS X dumps these all over the place.
  4. .DS_Store
  5. # Ignore the SimpleTest library if it is installed to /test/.
  6. /test/simpletest/
  7. # Ignore the /vendor/ directory for people using composer
  8. /vendor/
  9. # If the vendor directory isn't being commited the composer.lock file should also be ignored
  10. composer.lock
  11. # Ignore PHPUnit coverage file
  12. clover.xml
  13. # Ignore IDE's configuration files
  14. .idea
  15. # Ignore PHP CS Fixer local config and cache
  16. .php_cs
  17. .php_cs.cache
  18. .php-cs-fixer.cache
  19. # Ignore PHPStan local config
  20. .phpstan.neon
  21. # Ignore phpDocumentor's local config and artifacts
  22. .phpdoc/*
  23. phpdoc.xml
  24. # Ignore cached PHPUnit results.
  25. .phpunit.result.cache