Skip to content
This repository was archived by the owner on Apr 1, 2021. It is now read-only.

Commit 16222b7

Browse files
committed
Merge branch 'release/1.2.0'
2 parents 5881543 + 0fd7ee1 commit 16222b7

18 files changed

+1898
-1758
lines changed

Diff for: README.md

+21-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Build Status](https://travis-ci.com/adenvt/laravel-coreui-vue.svg?branch=master)](https://travis-ci.com/adenvt/laravel-coreui-vue) [![Greenkeeper badge](https://badges.greenkeeper.io/adenvt/laravel-coreui-vue.svg)](https://greenkeeper.io/)
77

88
## What's inside
9-
* [Laravel][laravel] 5.7, A PHP framework for web artisans
9+
* [Laravel][laravel] 5.8, A PHP framework for web artisans
1010
* [Core UI][coreui] for Vue, Free Bootstrap Admin Template
1111
* Usefull library: [Axios][axios], [jQuery][jquery], [Moment.js][moment], [Lodash][lodash]
1212
* [Vue Router][vue-router] and [Vuex][vuex], set out of the box
@@ -27,24 +27,23 @@
2727
* JSON PHP Extension
2828
* **Node** >= 8.9.4
2929
* **NPM** >= 5.6.0
30-
* For Ubuntu, require `apt-get install libpng16-dev`, [see](https://github.com/imagemin/imagemin-mozjpeg/issues/28)
3130

3231
## How to Install
33-
* Install using composer (doesn't need to clone)
32+
### via Composer
33+
1. Create project using composer
3434
```bash
3535
composer create-project --prefer-dist adenvt/laravel-coreui-vue project_name
36+
cd project_name
3637
```
37-
* Install Dependencies
38+
2. Install Dependencies
3839
```bash
39-
cd project_name
40-
4140
npm install
4241
```
43-
* Add write permission (Unix)
42+
3. Add write permission (Unix)
4443
```bash
4544
chmod -R go+w storage bootstrap/cache
4645
```
47-
* Compile Static Asset
46+
4. Compile Static Asset
4847
```bash
4948
## for Development
5049
npm run dev
@@ -56,6 +55,20 @@ npm run prod
5655
npm run hot
5756
```
5857

58+
### via Git
59+
1. Clone this repo
60+
```bash
61+
git clone --depth=1 https://github.com/adenvt/laravel-coreui-vue.git project_name
62+
cd project_name
63+
rm -r .git
64+
```
65+
2. Install Dependencies
66+
```
67+
composer install
68+
npm install
69+
```
70+
* Step 3 - 4 same as above
71+
5972
## Using Docker Compose
6073

6174
### For Development

Diff for: composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"php": "^7.1.3",
99
"fideloper/proxy": "^4.0",
1010
"guzzlehttp/guzzle": "^6.3",
11-
"laravel/framework": "5.7.*",
11+
"laravel/framework": "5.8.*",
1212
"laravel/tinker": "^1.0",
1313
"renatomarinho/laravel-page-speed": "^1.8"
1414
},

0 commit comments

Comments
 (0)