-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
59 lines (49 loc) · 917 Bytes
/
.gitignore
File metadata and controls
59 lines (49 loc) · 917 Bytes
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
# === PHP 專案基本檔案 ===
*.log
*.cache
*.tmp
*.swp
# === Composer 相關 ===
/vendor/
composer.lock
# === 環境設定檔(不應提交至 Git) ===
.env
.env.local
.env.*.local
# === IDE 設定檔(如 VS Code、PhpStorm 等)===
.vscode/
.idea/
*.sublime-*
# === 作業系統產生的檔案 ===
.DS_Store
Thumbs.db
ehthumbs.db
desktop.ini
# === 伺服器快取與 session 資料夾 ===
/cache/
/tmp/
/sessions/
# === 上傳檔案資料夾(如有)===
/uploads/
/storage/
# === 測試 Coverage ===
/coverage/
# === 公用資料夾中非原始碼的產物(如圖片上傳、編譯後JS)===
/public/uploads/
/public/build/
/public/storage/
# === Laravel 特定(若未使用可略)===
/node_modules/
/storage/*.key
/public/hot
/public/storage
/storage/*.key
/.phpunit.result.cache
# === 其他可選項目(如 DB dump)===
# *.sql
# *.sqlite
*.bak
*.old
*.zip
*.tar.gz
composer.json