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

Commit a758c6c

Browse files
committed
add coreuis, guzzle-http
1 parent 66998ea commit a758c6c

File tree

165 files changed

+58784
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+58784
-257
lines changed

.editorconfig

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ charset = utf-8
55
end_of_line = lf
66
insert_final_newline = true
77
indent_style = space
8-
indent_size = 4
8+
indent_size = 2
99
trim_trailing_whitespace = true
1010

11+
[*.php]
12+
indent_style = space
13+
indent_size = 4
14+
1115
[*.md]
1216
trim_trailing_whitespace = false
1317

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Laravel CoreUI Vue
22

3-
| Laravel + CoreUI + Vue Boilerplate
3+
> Laravel + CoreUI + Vue Boilerplate
44
55
## How to Install
66
* Clone this repository
@@ -17,4 +17,10 @@ $ cp -r .env.example .env
1717
```bash
1818
$ php artisan key:generate
1919
```
20+
* Add write permission
21+
```bash
22+
$ chmod -R go+w storage bootstrap/cache
23+
```
2024

25+
## License
26+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details

composer.json

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,59 @@
11
{
2-
"name": "laravel/laravel",
3-
"description": "The Laravel Framework.",
4-
"keywords": ["framework", "laravel"],
5-
"license": "MIT",
6-
"type": "project",
7-
"require": {
8-
"php": "^7.1.3",
9-
"fideloper/proxy": "^4.0",
10-
"laravel/framework": "5.6.*",
11-
"laravel/tinker": "^1.0"
12-
},
13-
"require-dev": {
14-
"filp/whoops": "^2.0",
15-
"fzaninotto/faker": "^1.4",
16-
"mockery/mockery": "^1.0",
17-
"nunomaduro/collision": "^2.0",
18-
"phpunit/phpunit": "^7.0"
19-
},
20-
"autoload": {
21-
"classmap": [
22-
"database/seeds",
23-
"database/factories"
24-
],
25-
"psr-4": {
26-
"App\\": "app/"
27-
}
28-
},
29-
"autoload-dev": {
30-
"psr-4": {
31-
"Tests\\": "tests/"
32-
}
33-
},
34-
"extra": {
35-
"laravel": {
36-
"dont-discover": [
37-
]
38-
}
39-
},
40-
"scripts": {
41-
"post-root-package-install": [
42-
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
43-
],
44-
"post-create-project-cmd": [
45-
"@php artisan key:generate"
46-
],
47-
"post-autoload-dump": [
48-
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
49-
"@php artisan package:discover"
50-
]
51-
},
52-
"config": {
53-
"preferred-install": "dist",
54-
"sort-packages": true,
55-
"optimize-autoloader": true
56-
},
57-
"minimum-stability": "dev",
58-
"prefer-stable": true
2+
"name": "laravel/laravel",
3+
"description": "The Laravel Framework.",
4+
"keywords": ["framework", "laravel"],
5+
"license": "MIT",
6+
"type": "project",
7+
"require": {
8+
"php": "^7.1.3",
9+
"fideloper/proxy": "^4.0",
10+
"guzzlehttp/guzzle": "^6.3",
11+
"laravel/framework": "5.6.*",
12+
"laravel/tinker": "^1.0"
13+
},
14+
"require-dev": {
15+
"filp/whoops": "^2.0",
16+
"fzaninotto/faker": "^1.4",
17+
"mockery/mockery": "^1.0",
18+
"nunomaduro/collision": "^2.0",
19+
"phpunit/phpunit": "^7.0"
20+
},
21+
"autoload": {
22+
"classmap": [
23+
"database/seeds",
24+
"database/factories"
25+
],
26+
"psr-4": {
27+
"App\\": "app/"
28+
}
29+
},
30+
"autoload-dev": {
31+
"psr-4": {
32+
"Tests\\": "tests/"
33+
}
34+
},
35+
"extra": {
36+
"laravel": {
37+
"dont-discover": []
38+
}
39+
},
40+
"scripts": {
41+
"post-root-package-install": [
42+
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
43+
],
44+
"post-create-project-cmd": [
45+
"@php artisan key:generate"
46+
],
47+
"post-autoload-dump": [
48+
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
49+
"@php artisan package:discover"
50+
]
51+
},
52+
"config": {
53+
"preferred-install": "dist",
54+
"sort-packages": true,
55+
"optimize-autoloader": true
56+
},
57+
"minimum-stability": "dev",
58+
"prefer-stable": true
5959
}

0 commit comments

Comments
 (0)