vendor and env first commit

This commit is contained in:
2025-03-28 08:52:46 +01:00
parent f8388bc81b
commit 8f26283832
10976 changed files with 1349952 additions and 2 deletions
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface ConfirmPasswordViewResponse extends Responsable
{
//
}
@@ -0,0 +1,14 @@
<?php
namespace Laravel\Fortify\Contracts;
interface CreatesNewUsers
{
/**
* Validate and create a newly registered user.
*
* @param array $input
* @return \Illuminate\Foundation\Auth\User
*/
public function create(array $input);
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface EmailVerificationNotificationSentResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface FailedPasswordConfirmationResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface FailedPasswordResetLinkRequestResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface FailedPasswordResetResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface FailedTwoFactorLoginResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface LockoutResponse extends Responsable
{
//
}
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface LoginResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface LoginViewResponse extends Responsable
{
//
}
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface LogoutResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface PasswordConfirmedResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface PasswordResetResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface PasswordUpdateResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface ProfileInformationUpdatedResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface RecoveryCodesGeneratedResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface RegisterResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface RegisterViewResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface RequestPasswordResetLinkViewResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface ResetPasswordViewResponse extends Responsable
{
//
}
@@ -0,0 +1,11 @@
<?php
namespace Laravel\Fortify\Contracts;
/**
* @method void reset(\Illuminate\Foundation\Auth\User $user, array $input)
*/
interface ResetsUserPasswords
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface SuccessfulPasswordResetLinkRequestResponse extends Responsable
{
//
}
@@ -0,0 +1,32 @@
<?php
namespace Laravel\Fortify\Contracts;
interface TwoFactorAuthenticationProvider
{
/**
* Generate a new secret key.
*
* @return string
*/
public function generateSecretKey();
/**
* Get the two factor authentication QR code URL.
*
* @param string $companyName
* @param string $companyEmail
* @param string $secret
* @return string
*/
public function qrCodeUrl($companyName, $companyEmail, $secret);
/**
* Verify the given token.
*
* @param string $secret
* @param string $code
* @return bool
*/
public function verify($secret, $code);
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface TwoFactorChallengeViewResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface TwoFactorConfirmedResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface TwoFactorDisabledResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface TwoFactorEnabledResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface TwoFactorLoginResponse extends Responsable
{
//
}
@@ -0,0 +1,11 @@
<?php
namespace Laravel\Fortify\Contracts;
/**
* @method void update(\Illuminate\Foundation\Auth\User $user, array $input)
*/
interface UpdatesUserPasswords
{
//
}
@@ -0,0 +1,11 @@
<?php
namespace Laravel\Fortify\Contracts;
/**
* @method void update(\Illuminate\Foundation\Auth\User $user, array $input)
*/
interface UpdatesUserProfileInformation
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface VerifyEmailResponse extends Responsable
{
//
}
@@ -0,0 +1,10 @@
<?php
namespace Laravel\Fortify\Contracts;
use Illuminate\Contracts\Support\Responsable;
interface VerifyEmailViewResponse extends Responsable
{
//
}