.gitignore 451 B

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