Skip to content

Commit ac8e6fb

Browse files
committed
Merge branch 'master' of github.com:laravel/laravel
2 parents 5ea6fe1 + 6806aaa commit ac8e6fb

File tree

5 files changed

+43
-28
lines changed

5 files changed

+43
-28
lines changed

composer.json

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
{
22
"name": "laravel/laravel",
3+
"type": "project",
34
"description": "The Laravel Framework.",
4-
"keywords": ["framework", "laravel"],
5+
"keywords": [
6+
"framework",
7+
"laravel"
8+
],
59
"license": "MIT",
6-
"type": "project",
710
"require": {
811
"php": "^7.1.3",
912
"fideloper/proxy": "^4.0",
@@ -18,43 +21,42 @@
1821
"nunomaduro/collision": "^2.0",
1922
"phpunit/phpunit": "^7.0"
2023
},
24+
"config": {
25+
"optimize-autoloader": true,
26+
"preferred-install": "dist",
27+
"sort-packages": true
28+
},
29+
"extra": {
30+
"laravel": {
31+
"dont-discover": []
32+
}
33+
},
2134
"autoload": {
35+
"psr-4": {
36+
"App\\": "app/"
37+
},
2238
"classmap": [
2339
"database/seeds",
2440
"database/factories"
25-
],
26-
"psr-4": {
27-
"App\\": "app/"
28-
}
41+
]
2942
},
3043
"autoload-dev": {
3144
"psr-4": {
3245
"Tests\\": "tests/"
3346
}
3447
},
35-
"extra": {
36-
"laravel": {
37-
"dont-discover": [
38-
]
39-
}
40-
},
48+
"minimum-stability": "dev",
49+
"prefer-stable": true,
4150
"scripts": {
51+
"post-autoload-dump": [
52+
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
53+
"@php artisan package:discover --ansi"
54+
],
4255
"post-root-package-install": [
4356
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
4457
],
4558
"post-create-project-cmd": [
4659
"@php artisan key:generate --ansi"
47-
],
48-
"post-autoload-dump": [
49-
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
50-
"@php artisan package:discover --ansi"
5160
]
52-
},
53-
"config": {
54-
"preferred-install": "dist",
55-
"sort-packages": true,
56-
"optimize-autoloader": true
57-
},
58-
"minimum-stability": "dev",
59-
"prefer-stable": true
61+
}
6062
}

config/app.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454

5555
'url' => env('APP_URL', 'http://localhost'),
5656

57+
'asset_url' => env('ASSET_URL', null),
58+
5759
/*
5860
|--------------------------------------------------------------------------
5961
| Application Timezone

config/mail.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,17 @@
120120
],
121121
],
122122

123+
/*
124+
|--------------------------------------------------------------------------
125+
| Log Channel
126+
|--------------------------------------------------------------------------
127+
|
128+
| If you are using the "log" driver, you may specify the logging channel
129+
| if you prefer to keep mail messages separate from other log entries
130+
| for simpler reading. Otherwise, the default channel will be used.
131+
|
132+
*/
133+
134+
'log_channel' => env('MAIL_LOG_CHANNEL'),
135+
123136
];

readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ We would like to extend our thanks to the following sponsors for helping fund on
3838
- **[Cubet Techno Labs](https://cubettech.com)**
3939
- **[British Software Development](https://www.britishsoftware.co)**
4040
- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**
41+
- **[DevSquad](https://devsquad.com)**
4142
- [UserInsights](https://userinsights.com)
4243
- [Fragrantica](https://www.fragrantica.com)
4344
- [SOFTonSOFA](https://softonsofa.com/)

resources/js/app.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@ window.Vue = require('vue');
2020
Vue.component('example-component', require('./components/ExampleComponent.vue'));
2121

2222
// const files = require.context('./', true, /\.vue$/i)
23-
24-
// files.keys().map(key => {
25-
// return Vue.component(_.last(key.split('/')).split('.')[0], files(key))
26-
// })
23+
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key)))
2724

2825
/**
2926
* Next, we will create a fresh Vue application instance and attach it to

0 commit comments

Comments
 (0)