Skip to content

Commit 6652381

Browse files
authored
Merge pull request #393 from LavaLite/develop
Develop
2 parents a6b9272 + 4bd21e5 commit 6652381

File tree

2 files changed

+111
-28
lines changed

2 files changed

+111
-28
lines changed

Diff for: .gitignore

+106-16
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,109 @@
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
792
/vendor
893
.env
994
.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

Diff for: composer.json

+5-12
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@
1616
"laravel/socialite": "~5.1",
1717
"laravel/tinker": "^2.8",
1818
"laravel/ui": "^4.2",
19-
"lavalite/framework": "dev-develop",
19+
"lavalite/framework": "^10.0",
2020
"league/fractal": "^0.20.1",
2121
"litecms/block": "^10.0",
2222
"litecms/contact": "^10.0",
23-
"litecms/page": "^10.0"
23+
"litecms/page": "^10.0",
24+
"litefront/default": "^2.0",
25+
"litefront/user": "^2.0",
26+
"litefront/public": "^2.0"
2427
},
2528
"require-dev": {
2629
"fakerphp/faker": "^1.9.1",
@@ -43,16 +46,6 @@
4346
"Tests\\": "tests/"
4447
}
4548
},
46-
"repositories": [
47-
{
48-
"type": "path",
49-
"url": "packages/lavalite/*"
50-
},
51-
{
52-
"type": "path",
53-
"url": "packages/litecms/*"
54-
}
55-
],
5649
"scripts": {
5750
"post-autoload-dump": [
5851
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",

0 commit comments

Comments
 (0)