├── .github └── workflows │ ├── run-linting.yml │ └── run-tests.yml ├── .php-cs-fixer.php ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── UPGRADING.md ├── composer.json ├── config └── verification-code.php ├── database └── migrations │ └── create_verification_codes_table.php.stub ├── phpcs.xml └── src ├── Console └── PruneCommand.php ├── Models └── VerificationCode.php ├── Notifications ├── VerificationCodeCreated.php └── VerificationCodeCreatedInterface.php ├── Support └── CodeGenerator.php ├── VerificationCode.php ├── VerificationCodeManager.php └── VerificationCodeServiceProvider.php /.github/workflows/run-linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/.github/workflows/run-linting.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/composer.json -------------------------------------------------------------------------------- /config/verification-code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/config/verification-code.php -------------------------------------------------------------------------------- /database/migrations/create_verification_codes_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/database/migrations/create_verification_codes_table.php.stub -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/phpcs.xml -------------------------------------------------------------------------------- /src/Console/PruneCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/src/Console/PruneCommand.php -------------------------------------------------------------------------------- /src/Models/VerificationCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/src/Models/VerificationCode.php -------------------------------------------------------------------------------- /src/Notifications/VerificationCodeCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/src/Notifications/VerificationCodeCreated.php -------------------------------------------------------------------------------- /src/Notifications/VerificationCodeCreatedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/src/Notifications/VerificationCodeCreatedInterface.php -------------------------------------------------------------------------------- /src/Support/CodeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/src/Support/CodeGenerator.php -------------------------------------------------------------------------------- /src/VerificationCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/src/VerificationCode.php -------------------------------------------------------------------------------- /src/VerificationCodeManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/src/VerificationCodeManager.php -------------------------------------------------------------------------------- /src/VerificationCodeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wotzebra/laravel-verification-code/HEAD/src/VerificationCodeServiceProvider.php --------------------------------------------------------------------------------