-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
71 lines (51 loc) · 960 Bytes
/
.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
# Composer dependencies
/vendor/
# Composer lock file (you might want to track this in some cases)
# /composer.lock
# PHP CS Fixer cache file
.php_cs.cache
# PHPUnit
.phpunit.result.cache
# PHP-CS-Fixer
.php_cs.cache
index.php
# PHPStorm project files
.idea/
# Visual Studio Code settings
.vscode/
# macOS system files
.DS_Store
# Windows system files
Thumbs.db
# Linux backup files
*~
# Local configuration files
*.local.php
# Environment files
.env
.env.*
!.env.example
# Log files
*.log
# Temporary files
*.tmp
*.swp
*.swo
*.bak
*.orig
# Generated files
*.cache
*.phar
# gRPC generated files (if you're generating these on the fly)
# Uncomment if you don't want to track these
# /GPBMetadata/
# /Com/
# PHPUnit code coverage reports
coverage/
# Any other build artifacts or generated files
/build/
# Ignore all hidden files and directories except .gitignore
.*
!.gitignore
# Ignore any compiled PHP files (rare, but just in case)
*.phpc