Initial pass at Laravel 7 support #673

This commit is contained in:
Nabeel Shahzad
2020-05-15 18:20:16 -04:00
parent 885e1d599e
commit 6078163d75
27 changed files with 1659 additions and 1281 deletions

View File

@@ -80,15 +80,29 @@ return [
// Overrides config/mail.php
'mail' => [
'driver' => 'mail',
'host' => '',
'port' => 587,
'driver' => 'mail', # Default is to use the mail() fn
'mailers' => [
'smtp' => [
'transport' => 'smtp',
'host' => '',
'port' => '',
'encryption' => '',
'username' => '',
'password' => '',
'timeout' => null,
],
'mailgun' => [
'transport' => 'mailgun',
],
'sendmail' => [
'transport' => 'sendmail',
'path' => '/usr/sbin/sendmail -bs',
],
],
'from' => [
'name' => '',
'name' => 'phpVMS No-Reply',
'address' => 'no-reply@phpvms.net',
],
'username' => '',
'password' => '',
],
// Overrides config/session.php

View File

@@ -2,7 +2,7 @@
namespace $NAMESPACE$;
use Illuminate\Http\Resources\Json\Resource;
use App\Contracts\Resource;
/**
* Class $CLASS$