######## Smart PHP rules from t.bondois.info/gitignore #### Version Control /.svn/ /.gitattributes ## Uncomment next line in case you must NOT version this .gitignore file : #/.gitignore #### Cache files *.cache cache/ Cache/ #### Log files *.log logs/* #### Temp files *.tmp tmp/* temp/* *.swp ~* *~ ._* #### Dev files *.bk *.bak *.old phpinfo.php php_info.php test_mail.php /sandbox/* ## Hint : prefix your work files/folders by "gign" (stands for Git IGNore) gign-* gign_* orig_* *.orig *.original *.ORIG *.ORIGINAL #### Popular PHP libraries ## Composer vendor/ /composer.phar /composer ## phpdotenv /.env ## firePHP firephp* ## PHPUnit /.phpunit/* #phpunit.xml ## rocketeers/rocketeer Task runner and deployment package .rocketeer #### These files in the projet root path should be ignored IN MOST OF CASE : /*.7z /*.bz2 /*.gz /*.jar /*.rar /*.tar /*.tgz /*.zip /*.dmg /*.iso /*.sql /*.csv #### Information/Legal Files /CHANGELOG* /UPGRADE* /LICENSE* /LICENCE* #### IDE files ## JetBrains IDEs /.idea* ## NetBeans /nbproject/ ## Eclipse, ZendStudio /.buildpath /.cache /.metadata /.project /.settings ## Sublime *.sublime-* ## Others /atlassian* *.scc .externalToolBuilders .vimrc local.properties #### Generated by OS ## Windows cache desktop.ini Thumbs.db ## Windows shortcuts *.lnk ## Windows Bin used on file shares $RECYCLE.BIN/ ## MacOS .DS_Store __MACOSX/ .AppleDouble .LSOverride #### Exceptions ## Hint : create a blank .gitkeep file to version empty folders !.gitkeep ## to version all htaccess, uncomment : #!.htaccess