Merge branch 'develop' of github.com:laravel/laravel into develop
This commit is contained in:
commit
255c2bf1b7
|
@ -6,9 +6,10 @@
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.0.0",
|
"php": ">=7.0.0",
|
||||||
|
"fideloper/proxy": "~3.3",
|
||||||
"laravel/framework": "5.5.*",
|
"laravel/framework": "5.5.*",
|
||||||
"laravel/tinker": "~1.0",
|
"laravel/tinker": "~1.0",
|
||||||
"fideloper/proxy": "~3.3"
|
"predis/predis": "^1.1"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"fzaninotto/faker": "~1.4",
|
"fzaninotto/faker": "~1.4",
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,42 @@
|
||||||
|
# Misc
|
||||||
|
- Trust Proxies Middleware *
|
||||||
|
- $listeners On EventServiceProvider *
|
||||||
|
- Blade::if() *
|
||||||
|
- Notification::route()->notify()
|
||||||
|
|
||||||
|
# Routes & Rendering
|
||||||
|
- React Preset / None Preset
|
||||||
|
- Route::view *
|
||||||
|
- Route::redirect *
|
||||||
|
- Returning Mailables From Routes *
|
||||||
|
- Renderable Exceptions (And Report Method) *
|
||||||
|
- Responsable Interface *
|
||||||
|
|
||||||
|
# Validation
|
||||||
|
- Custom Validation Rules (make:rule) *
|
||||||
|
- ->validate Returns Validated Data *
|
||||||
|
- $request->validate() Method *
|
||||||
|
|
||||||
|
# Testing
|
||||||
|
- Migrate Fresh & Testing Flow Improvements *
|
||||||
|
- Separate Model Factories By Default, make:factory Method
|
||||||
|
- withoutExceptionHandling In Tests *
|
||||||
|
|
||||||
|
# Packages
|
||||||
|
- Package Auto-Discovery *
|
||||||
|
- Vendor Publish Selection Menu *
|
||||||
|
|
||||||
|
# Queues
|
||||||
|
- Job Chaining *
|
||||||
|
- deleteWhenMissingModels For Missing Models On Job Injection
|
||||||
|
- Horizon
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- Pivot Casting - https://laravel-news.com/laravel-5-5-pivot-casting
|
||||||
|
- Cache Locks (Memcached + Redis) *?
|
||||||
|
- JSON Exception Messages When Request Wants JSON
|
||||||
|
- User ID & Email Address In Logs If Possible
|
||||||
|
- Change Format Of Validation Errors In One Spot
|
||||||
|
- make:model -a
|
||||||
|
- Fluent Resource Options (https://github.com/laravel/framework/pull/18767)
|
Loading…
Reference in New Issue