-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.gitignore
87 lines (72 loc) · 1.21 KB
/
.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
# Ignore sensitive or environment specific files
.env
.env.local
.env.*.local
.env.testing
.env.development
.env.production
# Ignore dependency directories
/vendor/
/node_modules/
# Ignore Composer and NPM/Yarn files
composer.lock
package-lock.json
yarn.lock
# Ignore IDE-specific files
.idea/
*.iml
# Ignore system files
.DS_Store
Thumbs.db
# Ignore build and cache directories
/build/
/cache/
/logs/
/tmp/
# Ignore PHPUnit result files
phpunit.xml
phpunit.xml.dist
# Ignore Symfony specific files
/.env.local.php
/.env.*.local.php
/phpunit.result.cache
/.php_cs.cache
/.phpunit.result.cache
/var/
# Ignore Laravel specific files
/vendor/
storage/*.key
storage/logs/*.log
storage/framework/sessions/*
storage/framework/views/*
storage/framework/cache/*
/bootstrap/cache/*
# Ignore Laravel Mix files
/public/hot
/public/storage
/public/mix-manifest.json
/public/css
/public/js
/public/*.map
# Ignore Symfony Encore files
/public/build
# Ignore Vagrant files
.vagrant/
# Ignore JetBrains specific files
.idea/
*.iws
*.iml
*.ipr
# Ignore PHPStorm specific files
.phpstorm.meta.php
/nbproject/private/
build/
dist/
tmp/
# Ignore other IDE specific files
.vscode/
*.sublime-project
*.sublime-workspace
# Ignore backups
*.bak
*.s