diff --git a/composer.json b/composer.json index 7f7ff197f5..51a1ccaf10 100644 --- a/composer.json +++ b/composer.json @@ -42,6 +42,7 @@ "symfony/validator": "5.1.*", "symfony/web-link": "5.1.*", "symfony/yaml": "5.1.*", + "symfonycasts/verify-email-bundle": "^1.0", "twig/markdown-extra": "^3.0", "wikimedia/composer-merge-plugin": "^1.4" }, diff --git a/composer.lock b/composer.lock index bf812eeb2b..ee9205c0f5 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7c08fb50b97bdb6b7cc32b79ee9c0743", + "content-hash": "77727097fb84dd936440782aa90e0671", "packages": [ { "name": "alchemy/resource-component", @@ -8105,6 +8105,51 @@ ], "time": "2020-05-20T17:43:50+00:00" }, + { + "name": "symfonycasts/verify-email-bundle", + "version": "v1.0.0", + "source": { + "type": "git", + "url": "https://github.com/SymfonyCasts/verify-email-bundle.git", + "reference": "501e503f6a8ae282ffb3fff167e0740dae56b1ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/501e503f6a8ae282ffb3fff167e0740dae56b1ae", + "reference": "501e503f6a8ae282ffb3fff167e0740dae56b1ae", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "symfony/config": "^4.4 | ^5.0", + "symfony/dependency-injection": "^4.4 | ^5.0", + "symfony/http-kernel": "^4.4 | ^5.0", + "symfony/routing": "^4.4 | ^5.0" + }, + "conflict": { + "symfony/framework-bundle": "<4.4" + }, + "require-dev": { + "doctrine/orm": "^2.7", + "doctrine/persistence": "^1.3", + "friendsofphp/php-cs-fixer": "^2.16", + "symfony/framework-bundle": "^4.4 | ^5.0", + "symfony/phpunit-bridge": "^5.0", + "vimeo/psalm": "^3.8" + }, + "type": "symfony-bundle", + "autoload": { + "psr-4": { + "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Simple, stylish Email Verification for Symfony", + "time": "2020-05-24T11:04:34+00:00" + }, { "name": "twig/extra-bundle", "version": "v3.0.4", diff --git a/config/bundles.php b/config/bundles.php index a00a55707d..4b8bb1c63e 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -12,4 +12,5 @@ return [ Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], + SymfonyCasts\Bundle\VerifyEmail\SymfonyCastsVerifyEmailBundle::class => ['all' => true], ];