Merge branch 'develop' of github.com:laravel/laravel into develop

This commit is contained in:
Taylor Otwell 2017-07-11 16:53:11 -05:00
commit 255c2bf1b7
3 changed files with 3882 additions and 1 deletions

View File

@ -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",

3838
composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

42
topics.md Normal file
View File

@ -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)