1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # See http://help.github.com/ignore-files/ for more about ignoring files.
- #
- # If you find yourself ignoring temporary files generated by your text editor or
- # operating system, you probably want to add a global ignore instead:
- # git config --global core.excludesfile ~/.gitignore_global
- /vendor
- /build
- /dist
- .DS_Store
- /tags
- .idea
- composer.lock
- cache.properties
- phpunit.xml
- tmp
- # VIM
- [._]*.s[a-w][a-z]
- [._]s[a-w][a-z]
- *.un~
- Session.vim
- .netrwhist
- *~
- # Sublime Text
- *.sublime-workspace
- # Netbeans IDE
- nbproject
- # Eclipse IDE
- .buildpath
- .project
- .settings/
- # Notepad++
- nppBackup
- # ctags
- tags
|