Browse Source

fix conflicts

Taylor Otwell 7 years ago
parent
commit
11dfcf6d1a

+ 1 - 0
.gitignore

@@ -7,4 +7,5 @@
 /.vagrant
 /.vagrant
 Homestead.json
 Homestead.json
 Homestead.yaml
 Homestead.yaml
+npm-debug.log
 .env
 .env

+ 18 - 0
CHANGELOG.md

@@ -1,5 +1,23 @@
 # Release Notes
 # Release Notes
 
 
+## [Unreleased]
+
+### Added
+- Added `optimize-autoloader` to `config` in `composer.json` ([#4189](https://github.com/laravel/laravel/pull/4189))
+- Added `.vagrant` directory to `.gitignore` ([#4191](https://github.com/laravel/laravel/pull/4191))
+- Added `npm run development` and `npm run prod` commands ([#4190](https://github.com/laravel/laravel/pull/4190), [#4193](https://github.com/laravel/laravel/pull/4193))
+- Added `APP_NAME` environment variable ([#4204](https://github.com/laravel/laravel/pull/4204))
+
+### Changed
+- Changed Laravel Mix version to `0.*` ([#4188](https://github.com/laravel/laravel/pull/4188))
+- Add to axios defaults instead of overwriting them ([#4208](https://github.com/laravel/laravel/pull/4208))
+- Added `string` validation rule to `RegisterController` ([#4212](https://github.com/laravel/laravel/pull/4212))
+- Moved Vue inclusion from `bootstrap.js` to `app.js` ([17ec5c5](https://github.com/laravel/laravel/commit/17ec5c51d60bb05985f287f09041c56fcd41d9ce))
+- Only load libraries if present ([d905b2e](https://github.com/laravel/laravel/commit/d905b2e7bede2967d37ed7b260cd9d526bb9cabd))
+- Ignore the NPM debug log ([#4232](https://github.com/laravel/laravel/pull/4232))
+- Use fluent middleware definition in `LoginController` ([#4229]https://github.com/laravel/laravel/pull/4229)
+
+
 ## v5.4.16 (2017-03-17)
 ## v5.4.16 (2017-03-17)
 
 
 ### Added
 ### Added

+ 1 - 1
app/Http/Controllers/Auth/LoginController.php

@@ -34,6 +34,6 @@ class LoginController extends Controller
      */
      */
     public function __construct()
     public function __construct()
     {
     {
-        $this->middleware('guest', ['except' => 'logout']);
+        $this->middleware('guest')->except('logout');
     }
     }
 }
 }

+ 1 - 1
artisan

@@ -42,7 +42,7 @@ $status = $kernel->handle(
 | Shutdown The Application
 | Shutdown The Application
 |--------------------------------------------------------------------------
 |--------------------------------------------------------------------------
 |
 |
-| Once Artisan has finished running. We will fire off the shutdown events
+| Once Artisan has finished running, we will fire off the shutdown events
 | so that any final work may be done by the application before we shut
 | so that any final work may be done by the application before we shut
 | down the process. This is the last thing to happen to the request.
 | down the process. This is the last thing to happen to the request.
 |
 |

+ 11 - 0
config/database.php

@@ -67,6 +67,17 @@ return [
             'sslmode' => 'prefer',
             'sslmode' => 'prefer',
         ],
         ],
 
 
+        'sqlsrv' => [
+            'driver' => 'sqlsrv',
+            'host' => env('DB_HOST', 'localhost'),
+            'port' => env('DB_PORT', '1433'),
+            'database' => env('DB_DATABASE', 'forge'),
+            'username' => env('DB_USERNAME', 'forge'),
+            'password' => env('DB_PASSWORD', ''),
+            'charset' => 'utf8',
+            'prefix' => '',
+        ],
+
     ],
     ],
 
 
     /*
     /*

+ 2 - 2
config/filesystems.php

@@ -13,7 +13,7 @@ return [
     |
     |
     */
     */
 
 
-    'default' => 'local',
+    'default' => env('FILESYSTEM_DRIVER', 'local'),
 
 
     /*
     /*
     |--------------------------------------------------------------------------
     |--------------------------------------------------------------------------
@@ -26,7 +26,7 @@ return [
     |
     |
     */
     */
 
 
-    'cloud' => 's3',
+    'cloud' => env('FILESYSTEM_CLOUD', 's3'),
 
 
     /*
     /*
     |--------------------------------------------------------------------------
     |--------------------------------------------------------------------------

+ 2 - 2
readme.md

@@ -9,7 +9,7 @@
 
 
 ## About Laravel
 ## About Laravel
 
 
-Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as:
+Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as:
 
 
 - [Simple, fast routing engine](https://laravel.com/docs/routing).
 - [Simple, fast routing engine](https://laravel.com/docs/routing).
 - [Powerful dependency injection container](https://laravel.com/docs/container).
 - [Powerful dependency injection container](https://laravel.com/docs/container).
@@ -35,8 +35,8 @@ We would like to extend our thanks to the following sponsors for helping fund on
 - **[Tighten Co.](https://tighten.co)**
 - **[Tighten Co.](https://tighten.co)**
 - **[British Software Development](https://www.britishsoftware.co)**
 - **[British Software Development](https://www.britishsoftware.co)**
 - **[Styde](https://styde.net)**
 - **[Styde](https://styde.net)**
-- **[Codecourse](https://www.codecourse.com)**
 - [Fragrantica](https://www.fragrantica.com)
 - [Fragrantica](https://www.fragrantica.com)
+- [SOFTonSOFA](https://softonsofa.com/)
 
 
 ## Contributing
 ## Contributing
 
 

+ 1 - 1
resources/views/welcome.blade.php

@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
 <html lang="{{ config('app.locale') }}">
 <html lang="{{ config('app.locale') }}">
     <head>
     <head>
         <meta charset="utf-8">
         <meta charset="utf-8">