We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7078a70 commit 2200310Copy full SHA for 2200310
.gitignore
@@ -0,0 +1,42 @@
1
+# Composer 依赖目录
2
+/vendor/
3
+/composer.lock
4
+
5
+# Node.js 依赖目录
6
+/node_modules/
7
+/package-lock.json
8
9
+# Laravel 或 Symfony 等框架的缓存和日志目录
10
+/storage/logs/
11
+/storage/framework/cache/
12
+/storage/framework/sessions/
13
+/storage/framework/views/
14
+/bootstrap/cache/
15
16
+# 环境配置文件
17
+.env
18
+.env.*.local
19
+.phpunit.result.cache
20
21
+# IDE 和编辑器配置文件
22
+/.idea/
23
+/.vscode/
24
+/nbproject/
25
+/*.iml
26
27
+# 操作系统生成的文件
28
+.DS_Store
29
+Thumbs.db
30
+desktop.ini
31
32
+# 缓存文件
33
+/.sass-cache/
34
+/.htaccess
35
36
+# 日志文件
37
+*.log
38
+*.log.*
39
+*.txt
40
41
+# PHPStorm 目录
42
+.idea/
0 commit comments