Skip to content

Commit 4b78ba6

Browse files
committed
fix conflicts
2 parents 65f8271 + af15618 commit 4b78ba6

File tree

12 files changed

+44
-10
lines changed

12 files changed

+44
-10
lines changed

.styleci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
php:
2+
preset: laravel
3+
disabled:
4+
- unused_use
5+
finder:
6+
not-name:
7+
- index.php
8+
- server.php
9+
js:
10+
finder:
11+
not-name:
12+
- webpack.mix.js
13+
css: true

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Release Notes
22

3+
## [Unreleased](https://github.com/laravel/laravel/compare/v5.8.3...master)
4+
5+
### Changed
6+
- Upgrade the collision dependency from v2 to v3 ([#4963](https://github.com/laravel/laravel/pull/4963))
7+
8+
9+
## [v5.8.3 (2019-03-05)](https://github.com/laravel/laravel/compare/v5.8.0...v5.8.3)
10+
11+
### Added
12+
- Add AWS S3 Bucket to `.env.example` ([f84a69e](https://github.com/laravel/laravel/commit/f84a69ee852bd44363042a61995d330574b6b8c3))
13+
14+
### Changed
15+
- Set default AWS region ([ff4f40f](https://github.com/laravel/laravel/commit/ff4f40fbabcefcb87facb1346fcfe5b8266eb40d), [#4956](https://github.com/laravel/laravel/pull/4956))
16+
17+
### Fixed
18+
- Comment out non-existing model class and policy example ([f4ff4f4](https://github.com/laravel/laravel/commit/f4ff4f4176f7d931e301f36b95a46285ac61b8b8))
19+
- Only apply MySQL PDO options when extension exists ([3001f3c](https://github.com/laravel/laravel/commit/3001f3c6e232ba7ce2ecdbdfe6e43b4c64ee05ad))
20+
21+
322
## [v5.8.0 (2019-02-26)](https://github.com/laravel/laravel/compare/v5.7.28...v5.8.0)
423

524
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"filp/whoops": "^2.0",
1919
"fzaninotto/faker": "^1.4",
2020
"mockery/mockery": "^1.0",
21-
"nunomaduro/collision": "^2.0",
21+
"nunomaduro/collision": "^3.0",
2222
"phpunit/phpunit": "^7.5"
2323
},
2424
"config": {

config/database.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
use Illuminate\Support\Str;
4+
35
return [
46

57
/*
@@ -117,6 +119,7 @@
117119

118120
'options' => [
119121
'cluster' => env('REDIS_CLUSTER', 'predis'),
122+
'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database_',
120123
],
121124

122125
'default' => [

database/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*.sqlite
2+
*.sqlite-journal

database/factories/UserFactory.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22

3+
/** @var \Illuminate\Database\Eloquent\Factory $factory */
34
use App\User;
45
use Illuminate\Support\Str;
56
use Faker\Generator as Faker;

readme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Laravel is accessible, powerful, and provides tools required for large, robust a
2525

2626
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
2727

28-
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1100 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost you and your team's skills by digging into our comprehensive video library.
28+
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1400 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
2929

3030
## Laravel Sponsors
3131

@@ -57,6 +57,7 @@ We would like to extend our thanks to the following sponsors for funding Laravel
5757
- [We Are The Robots Inc.](https://watr.mx/)
5858
- [Understand.io](https://www.understand.io/)
5959
- [Abdel Elrafa](https://abdelelrafa.com)
60+
- [Hyper Host](https://hyper.host)
6061

6162
## Contributing
6263

resources/js/app.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/**
32
* First we will load all of this project's JavaScript dependencies which
43
* includes Vue and other libraries. It is a great starting point when
@@ -29,5 +28,5 @@ Vue.component('example-component', require('./components/ExampleComponent.vue').
2928
*/
3029

3130
const app = new Vue({
32-
el: '#app'
31+
el: '#app',
3332
});

resources/js/bootstrap.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
window._ = require('lodash');
32

43
/**

resources/sass/_variables.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
21
// Body
32
$body-bg: #f8fafc;
43

54
// Typography
6-
$font-family-sans-serif: "Nunito", sans-serif;
5+
$font-family-sans-serif: 'Nunito', sans-serif;
76
$font-size-base: 0.9rem;
87
$line-height-base: 1.6;
98

109
// Colors
1110
$blue: #3490dc;
1211
$indigo: #6574cd;
1312
$purple: #9561e2;
14-
$pink: #f66D9b;
13+
$pink: #f66d9b;
1514
$red: #e3342f;
1615
$orange: #f6993f;
1716
$yellow: #ffed4a;

resources/sass/app.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
// Fonts
32
@import url('https://fonts.googleapis.com/css?family=Nunito');
43

webpack.mix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ const mix = require('laravel-mix');
1212
*/
1313

1414
mix.js('resources/js/app.js', 'public/js')
15-
.sass('resources/sass/app.scss', 'public/css');
15+
.sass('resources/sass/app.scss', 'public/css');

0 commit comments

Comments
 (0)