Skip to content

Commit

Permalink
Simplify gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
eschmar committed Oct 4, 2016
1 parent 636aa9f commit 9bf0d52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 50 deletions.
49 changes: 1 addition & 48 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,48 +1 @@
# Cache and logs (Symfony2)
/app/cache/*
/app/logs/*
!app/cache/.gitkeep
!app/logs/.gitkeep

# Email spool folder
/app/spool/*

# Cache, session files and logs (Symfony3)
/var/cache/*
/var/logs/*
/var/sessions/*
!var/cache/.gitkeep
!var/logs/.gitkeep
!var/sessions/.gitkeep

# Parameters
/app/config/parameters.yml
/app/config/parameters.ini

# Managed by Composer
/app/bootstrap.php.cache
/var/bootstrap.php.cache
/bin/*
!bin/console
!bin/symfony_requirements
/vendor/

# Assets and user uploads
/web/bundles/
/web/uploads/

# Assets managed by Bower
/web/assets/vendor/

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

# Build data
/build/

# Composer PHAR
/composer.phar

# Backup entities generated with doctrine:generate:entities command
*/Entity/*~
*.DS_Store
2 changes: 1 addition & 1 deletion Helper/TimeAgoHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* Time ago helper class.
*
* @author Marcel Eschmann, @Eschmar
* @author Marcel Eschmann, @eschmar
**/
class TimeAgoHelper
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TimeAgoBundle
Provides a simple twig filter for expressing time difference in words.
Provides a simple twig filter for expressing time difference in words for Symfony.

## Install
Composer (<a href="https://packagist.org/packages/eschmar/time-ago-bundle" target="_blank">Packagist</a>):
Expand Down

0 comments on commit 9bf0d52

Please sign in to comment.