-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp.gitignore
119 lines (106 loc) · 1.51 KB
/
php.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
######## 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