.gitignore 414 B

123456789101112131415161718192021222324252627282930
  1. # PhpStorm
  2. /.idea
  3. # Composer
  4. /vendor
  5. /composer.lock
  6. # Apache Ant
  7. /.ant_targets
  8. # Build artifacts and temporary files
  9. /build/artifacts
  10. /build/tmp
  11. # PHP-CS-Fixer
  12. /.php_cs
  13. /.php_cs.cache
  14. # Psalm
  15. /.psalm/cache
  16. # PHPUnit
  17. .phpunit.result.cache
  18. # Temporary files generated by PHPT test runner
  19. /tests/end-to-end/*.diff
  20. /tests/end-to-end/*.exp
  21. /tests/end-to-end/*.log
  22. /tests/end-to-end/*.out
  23. /tests/end-to-end/*.php