Skip to content

Commit 11dfcf6

Browse files
committed
fix conflicts
2 parents 758392c + ba5c294 commit 11dfcf6

File tree

8 files changed

+37
-7
lines changed

8 files changed

+37
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
/.vagrant
88
Homestead.json
99
Homestead.yaml
10+
npm-debug.log
1011
.env

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Release Notes
22

3+
## [Unreleased]
4+
5+
### Added
6+
- Added `optimize-autoloader` to `config` in `composer.json` ([#4189](https://github.com/laravel/laravel/pull/4189))
7+
- Added `.vagrant` directory to `.gitignore` ([#4191](https://github.com/laravel/laravel/pull/4191))
8+
- 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))
9+
- Added `APP_NAME` environment variable ([#4204](https://github.com/laravel/laravel/pull/4204))
10+
11+
### Changed
12+
- Changed Laravel Mix version to `0.*` ([#4188](https://github.com/laravel/laravel/pull/4188))
13+
- Add to axios defaults instead of overwriting them ([#4208](https://github.com/laravel/laravel/pull/4208))
14+
- Added `string` validation rule to `RegisterController` ([#4212](https://github.com/laravel/laravel/pull/4212))
15+
- Moved Vue inclusion from `bootstrap.js` to `app.js` ([17ec5c5](https://github.com/laravel/laravel/commit/17ec5c51d60bb05985f287f09041c56fcd41d9ce))
16+
- Only load libraries if present ([d905b2e](https://github.com/laravel/laravel/commit/d905b2e7bede2967d37ed7b260cd9d526bb9cabd))
17+
- Ignore the NPM debug log ([#4232](https://github.com/laravel/laravel/pull/4232))
18+
- Use fluent middleware definition in `LoginController` ([#4229]https://github.com/laravel/laravel/pull/4229)
19+
20+
321
## v5.4.16 (2017-03-17)
422

523
### Added

app/Http/Controllers/Auth/LoginController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ class LoginController extends Controller
3434
*/
3535
public function __construct()
3636
{
37-
$this->middleware('guest', ['except' => 'logout']);
37+
$this->middleware('guest')->except('logout');
3838
}
3939
}

artisan

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

config/database.php

+11
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,17 @@
6767
'sslmode' => 'prefer',
6868
],
6969

70+
'sqlsrv' => [
71+
'driver' => 'sqlsrv',
72+
'host' => env('DB_HOST', 'localhost'),
73+
'port' => env('DB_PORT', '1433'),
74+
'database' => env('DB_DATABASE', 'forge'),
75+
'username' => env('DB_USERNAME', 'forge'),
76+
'password' => env('DB_PASSWORD', ''),
77+
'charset' => 'utf8',
78+
'prefix' => '',
79+
],
80+
7081
],
7182

7283
/*

config/filesystems.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
|
1414
*/
1515

16-
'default' => 'local',
16+
'default' => env('FILESYSTEM_DRIVER', 'local'),
1717

1818
/*
1919
|--------------------------------------------------------------------------
@@ -26,7 +26,7 @@
2626
|
2727
*/
2828

29-
'cloud' => 's3',
29+
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
3030

3131
/*
3232
|--------------------------------------------------------------------------

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
## About Laravel
1111

12-
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:
12+
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:
1313

1414
- [Simple, fast routing engine](https://laravel.com/docs/routing).
1515
- [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
3535
- **[Tighten Co.](https://tighten.co)**
3636
- **[British Software Development](https://www.britishsoftware.co)**
3737
- **[Styde](https://styde.net)**
38-
- **[Codecourse](https://www.codecourse.com)**
3938
- [Fragrantica](https://www.fragrantica.com)
39+
- [SOFTonSOFA](https://softonsofa.com/)
4040

4141
## Contributing
4242

resources/views/welcome.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="{{ config('app.locale') }}">
33
<head>
44
<meta charset="utf-8">

0 commit comments

Comments
 (0)