├── .github ├── FUNDING.yml └── workflows │ └── run-tests.yml ├── .phpunit.result.cache ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── config.php ├── database └── migrations │ └── create_pending_user_emails_table.php.stub ├── resources └── views │ ├── verifyFirstEmail.blade.php │ └── verifyNewEmail.blade.php └── src ├── Http ├── InvalidVerificationLinkException.php ├── VerifiesPendingEmails.php └── VerifyNewEmailController.php ├── InvalidEmailVerificationModelException.php ├── Mail ├── VerifyFirstEmail.php └── VerifyNewEmail.php ├── MustVerifyNewEmail.php ├── PendingUserEmail.php ├── ServiceProvider.php └── routes.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [pascalbaljet] 2 | -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.phpunit.result.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/.phpunit.result.cache -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/config/config.php -------------------------------------------------------------------------------- /database/migrations/create_pending_user_emails_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/database/migrations/create_pending_user_emails_table.php.stub -------------------------------------------------------------------------------- /resources/views/verifyFirstEmail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/resources/views/verifyFirstEmail.blade.php -------------------------------------------------------------------------------- /resources/views/verifyNewEmail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/resources/views/verifyNewEmail.blade.php -------------------------------------------------------------------------------- /src/Http/InvalidVerificationLinkException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/Http/InvalidVerificationLinkException.php -------------------------------------------------------------------------------- /src/Http/VerifiesPendingEmails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/Http/VerifiesPendingEmails.php -------------------------------------------------------------------------------- /src/Http/VerifyNewEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/Http/VerifyNewEmailController.php -------------------------------------------------------------------------------- /src/InvalidEmailVerificationModelException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/InvalidEmailVerificationModelException.php -------------------------------------------------------------------------------- /src/Mail/VerifyFirstEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/Mail/VerifyFirstEmail.php -------------------------------------------------------------------------------- /src/Mail/VerifyNewEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/Mail/VerifyNewEmail.php -------------------------------------------------------------------------------- /src/MustVerifyNewEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/MustVerifyNewEmail.php -------------------------------------------------------------------------------- /src/PendingUserEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/PendingUserEmail.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protonemedia/laravel-verify-new-email/HEAD/src/routes.php --------------------------------------------------------------------------------