Symfony.gitignore 710 字节
Newer Older
1
# Cache and logs (Symfony2)
N
Nic Wortel 已提交
2
/app/cache/*
N
Nic Wortel 已提交
3
/app/logs/*
N
Nic Wortel 已提交
4 5
!app/cache/.gitkeep
!app/logs/.gitkeep
6

N
Nuno Rafael Rocha 已提交
7 8 9
# Email spool folder
/app/spool/*

K
Krzysztof Piasecki 已提交
10
# Cache, session files and logs (Symfony3)
11 12
/var/cache/*
/var/logs/*
K
Krzysztof Piasecki 已提交
13
/var/sessions/*
14 15
!var/cache/.gitkeep
!var/logs/.gitkeep
K
Krzysztof Piasecki 已提交
16
!var/sessions/.gitkeep
17

N
Nic Wortel 已提交
18
# Parameters
N
Nic Wortel 已提交
19
/app/config/parameters.yml
N
Nic Wortel 已提交
20 21
/app/config/parameters.ini

22
# Managed by Composer
23
/app/bootstrap.php.cache
24 25 26 27
/var/bootstrap.php.cache
/bin/*
!bin/console
!bin/symfony_requirements
N
Nic Wortel 已提交
28

N
Nic Wortel 已提交
29
# Assets and user uploads
N
Nic Wortel 已提交
30 31
/web/bundles/
/web/uploads/
32

33
# PHPUnit
N
Nic Wortel 已提交
34
/app/phpunit.xml
35
/phpunit.xml
36

N
Nic Wortel 已提交
37 38 39
# Build data
/build/

K
Krzysztof Piasecki 已提交
40
# Backup entities generated with doctrine:generate:entities command
41
**/Entity/*~
42 43 44

# Embedded web-server pid file
/.web-server-pid