.gitignore 1.36 KB
/web/bundles/
/app/bootstrap.php.cache
/app/cache/*
/app/config/parameters.yml
/app/logs/*
!app/cache/.gitkeep
!app/logs/.gitkeep
/app/phpunit.xml
/build/
/vendor/
/bin/
/composer.phar

# -- Symfony2 -----------------------------------------
 app/bootstrap.php.cache
 app/bootstrap_cache.php.cache
 app/config/parameters.ini
 app/config/parameters.yml
 app/cache/*
 app/logs/*
 vendor/*
 web/bundles/*
 web/css/*
 web/js/*
 web/uploads/*

 # -- Composer -----------------------------------------
 composer.phar

 # -- PHPUnit ------------------------------------------
 app/phpunit.xml  

 # -- Editores -----------------------------------------
 # vim
 .*.sw[a-z]
 *.un~
 Session.vim
 .netrwhist

 # eclipse
 *.pydevproject
 .project
 .metadata
 bin/**
 tmp/**
 tmp/**/*
 *.tmp
 *.bak
 *.swp
 *~.nib
 local.properties
 .classpath
 .settings/
 .loadpath
 .externalToolBuilders/
 *.launch
 .buildpath

 # phpstorm
 .idea/

 # textmate
 *.tmproj
 *.tmproject
 tmtags

 # sublimetext
 /*.sublime-project
 *.sublime-workspace

 # netbeans
 nbproject/private/
 nbproject/
 build/
 nbbuild/
 dist/
 nbdist/
 nbactions.xml
 nb-configuration.xml

 # -- Sistemas Operativos ------------------------------
 # Windows
 Thumbs.db
 ehthumbs.db
 Desktop.ini
 $RECYCLE.BIN/

 # Linux
 .*
 .gitignore
 !.htaccess
 *~

 # Mac OS X
 .DS_Store
 .AppleDouble
 .LSOverride
 Icon
 ._*
 .Spotlight-V100
 .Trashes