File tree 2 files changed +107
-27
lines changed
2 files changed +107
-27
lines changed Original file line number Diff line number Diff line change 1
- /.phpunit.cache
2
- /node_modules
3
- /public /build
4
- /public /hot
5
- /public /storage
6
- /storage /* .key
1
+ # ignore log files and databases
2
+ * .log
3
+ * .sql
4
+ * .sqlite
5
+
6
+ # ignore compiled files
7
+ * .com
8
+ * .class
9
+ * .dll
10
+ * .exe
11
+ * .o
12
+ * .so
13
+
14
+ # ignore packaged files
15
+ * .7z
16
+ * .dmg
17
+ * .gz
18
+ * .iso
19
+ * .jar
20
+ * .rar
21
+ * .tar
22
+ * .zip
23
+
24
+ # ignore OS generated files
25
+ ehthumbs.db
26
+ Thumbs.db
27
+ .DS_Store
28
+ .DS_Store ?
29
+ ._ *
30
+ .Spotlight-V100
31
+ .Trashes
32
+
33
+ # ignore Editor files
34
+ * .sublime-project
35
+ * .sublime-workspace
36
+ * .komodoproject
37
+ _ide_helper.php
38
+ /.idea
39
+ /.vscode
40
+ # Eclipse project files
41
+ .buildpath
42
+ .project
43
+ .settings /
44
+ workspace.xml
45
+
46
+ # Ignore cache
47
+ .cache /
48
+
49
+ # Ignore user created files :)
50
+ * .bak
51
+ * .orig
52
+
53
+ # Ignore system files
54
+ .bash_history
55
+ LICENSE_AFL.txt
56
+ LICENSE.html
57
+ LICENSE.txt
58
+ LICENSE_EE *
59
+ RELEASE_NOTES.txt
60
+ .ssh /
61
+ error_log
62
+ # .htpasswds
63
+ # /.htaccess
64
+ php.ini.sample
65
+ .modgit /
66
+ _vti_bin /
67
+ _vti_cnf /
68
+ _vti_inf.html
69
+ _vti_log /
70
+ _vti_pvt /
71
+ _vti_txt /
72
+ tmp /
73
+ php.ini
74
+ _old /
75
+ # .htpasswds/
76
+ # .htpasswd
77
+ .viminfo
78
+ .profile
79
+ .bashrc
80
+ .bash_logout
81
+ .bash_history
82
+ .modgit /
83
+ .modman /
84
+ pkginfo
85
+ nohup.out
86
+ Homestead.yaml
87
+ Homestead.json
88
+ /.vagrant
89
+ .phpunit.result.cache
90
+
91
+ # Laravel Specific files
7
92
/vendor
8
93
.env
9
94
.env.backup
10
- .env.production
11
- Homestead.json
12
- Homestead.yaml
13
- auth.json
14
- npm-debug.log
15
- yarn-error.log
16
- .phpunit.result.cache
17
- /.fleet
18
- /.idea
19
- /.vscode
95
+ ! .env.example
96
+ # /public/.htaccess
97
+ # storage/*
98
+ # !storage/framework/cache/
99
+ # !storage/framework/sessions/
100
+ # !storage/framework/views/
101
+ /storage /* .key
102
+ /node_modules
103
+ /public /hot
104
+ /public /storage
105
+
106
+ # composer files
107
+ composer.dev.json
108
+ composer.lock
109
+ package-lock.json
Original file line number Diff line number Diff line change 16
16
"laravel/socialite" : " ~5.1" ,
17
17
"laravel/tinker" : " ^2.8" ,
18
18
"laravel/ui" : " ^4.2" ,
19
- "lavalite/framework" : " dev-develop " ,
19
+ "lavalite/framework" : " ^10.0 " ,
20
20
"league/fractal" : " ^0.20.1" ,
21
21
"litecms/block" : " ^10.0" ,
22
22
"litecms/contact" : " ^10.0" ,
43
43
"Tests\\ " : " tests/"
44
44
}
45
45
},
46
- "repositories" : [
47
- {
48
- "type" : " path" ,
49
- "url" : " packages/lavalite/*"
50
- },
51
- {
52
- "type" : " path" ,
53
- "url" : " packages/litecms/*"
54
- }
55
- ],
56
46
"scripts" : {
57
47
"post-autoload-dump" : [
58
48
" Illuminate\\ Foundation\\ ComposerScripts::postAutoloadDump" ,
You can’t perform that action at this time.
0 commit comments