diff --git a/composer.json b/composer.json index f587e089..b473a9b7 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,12 @@ { "name": "laravel/laravel", - "description": "The Laravel Framework.", - "keywords": ["framework", "laravel"], - "license": "MIT", "type": "project", + "description": "The Laravel Framework.", + "keywords": [ + "framework", + "laravel" + ], + "license": "MIT", "require": { "php": "^7.1.3", "fideloper/proxy": "^4.0", @@ -18,43 +21,42 @@ "nunomaduro/collision": "^2.0", "phpunit/phpunit": "^7.0" }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true + }, + "extra": { + "laravel": { + "dont-discover": [] + } + }, "autoload": { + "psr-4": { + "App\\": "app/" + }, "classmap": [ "database/seeds", "database/factories" - ], - "psr-4": { - "App\\": "app/" - } + ] }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, - "extra": { - "laravel": { - "dont-discover": [ - ] - } - }, + "minimum-stability": "dev", + "prefer-stable": true, "scripts": { + "post-autoload-dump": [ + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", + "@php artisan package:discover --ansi" + ], "post-root-package-install": [ "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" ], "post-create-project-cmd": [ "@php artisan key:generate --ansi" - ], - "post-autoload-dump": [ - "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", - "@php artisan package:discover --ansi" ] - }, - "config": { - "preferred-install": "dist", - "sort-packages": true, - "optimize-autoloader": true - }, - "minimum-stability": "dev", - "prefer-stable": true + } } diff --git a/config/app.php b/config/app.php index 01081dca..57ee5b75 100644 --- a/config/app.php +++ b/config/app.php @@ -54,6 +54,8 @@ return [ 'url' => env('APP_URL', 'http://localhost'), + 'asset_url' => env('ASSET_URL', null), + /* |-------------------------------------------------------------------------- | Application Timezone diff --git a/config/mail.php b/config/mail.php index bb92224c..f4006459 100644 --- a/config/mail.php +++ b/config/mail.php @@ -120,4 +120,17 @@ return [ ], ], + /* + |-------------------------------------------------------------------------- + | Log Channel + |-------------------------------------------------------------------------- + | + | If you are using the "log" driver, you may specify the logging channel + | if you prefer to keep mail messages separate from other log entries + | for simpler reading. Otherwise, the default channel will be used. + | + */ + + 'log_channel' => env('MAIL_LOG_CHANNEL'), + ]; diff --git a/readme.md b/readme.md index 98a3e643..736a2ad3 100644 --- a/readme.md +++ b/readme.md @@ -38,6 +38,7 @@ We would like to extend our thanks to the following sponsors for helping fund on - **[Cubet Techno Labs](https://cubettech.com)** - **[British Software Development](https://www.britishsoftware.co)** - **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** +- **[DevSquad](https://devsquad.com)** - [UserInsights](https://userinsights.com) - [Fragrantica](https://www.fragrantica.com) - [SOFTonSOFA](https://softonsofa.com/) diff --git a/resources/js/app.js b/resources/js/app.js index 543dd59b..24b5dbf7 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -20,10 +20,7 @@ window.Vue = require('vue'); Vue.component('example-component', require('./components/ExampleComponent.vue')); // const files = require.context('./', true, /\.vue$/i) - -// files.keys().map(key => { -// return Vue.component(_.last(key.split('/')).split('.')[0], files(key)) -// }) +// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key))) /** * Next, we will create a fresh Vue application instance and attach it to