.gitignore 454 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # phpstorm project files
  2. .idea
  3. # netbeans project files
  4. nbproject
  5. # zend studio for eclipse project files
  6. .buildpath
  7. .project
  8. .settings
  9. # windows thumbnail cache
  10. Thumbs.db
  11. # composer vendor dir
  12. /vendor
  13. # composer itself is not needed
  14. composer.phar
  15. # Mac DS_Store Files
  16. .DS_Store
  17. # phpunit itself is not needed
  18. phpunit.phar
  19. # local phpunit config
  20. /phpunit.xml
  21. tests/_output/*
  22. tests/_support/_generated
  23. #vagrant folder
  24. /.vagrant
  25. .env
  26. #other
  27. .docs