├── .DS_Store ├── .all-contributorsrc ├── .coveralls.yml ├── .dockerignore ├── .env.dist ├── .github └── workflows │ ├── pr.yml │ └── push.yml ├── .gitignore ├── .styleci.yml ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── bin ├── console └── deptrac.phar ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── broadway.yaml │ ├── dev │ │ ├── monolog.yaml │ │ ├── routing.yaml │ │ └── web_profiler.yaml │ ├── doctrine.yaml │ ├── doctrine │ │ └── mapping │ │ │ └── user │ │ │ ├── Domain.ValueObject.Auth.Credentials.orm.xml │ │ │ └── Infrastructure.ReadModel.UserView.orm.xml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── framework_extra.yml │ ├── jwt │ │ ├── private.pem │ │ └── public.pem │ ├── lexik_jwt_authentication.yaml │ ├── messenger.yaml │ ├── nelmio_api_doc.yaml │ ├── prod │ │ ├── doctrine.yaml │ │ └── monolog.yaml │ ├── security.yaml │ ├── test │ │ ├── dama_doctrine_test_bundle.yaml │ │ ├── framework.yaml │ │ ├── monolog.yaml │ │ └── web_profiler.yaml │ └── twig.yaml ├── routes.yaml ├── routes │ ├── dev │ │ ├── twig.yaml │ │ └── web_profiler.yaml │ └── nelmio_api_doc.yaml ├── services.yaml └── services_test.yaml ├── deptrac.yaml ├── doc ├── Deployment.md ├── GetStarted │ ├── Async.md │ ├── Buses.md │ ├── Projections.md │ ├── UseCases.md │ └── Xdebug.md ├── Workflow.md ├── docker-php-interpreter.png ├── xdebug-activation.png └── xdebug-mapping.png ├── docker-compose.ci.yml ├── docker-compose.yml ├── easy-coding-standard.yml ├── etc ├── artifact │ ├── Dockerfile │ ├── chart │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── config │ │ │ ├── mysql.url │ │ │ └── parameters.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment-worker.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── migrations.yaml │ │ │ ├── secrets │ │ │ │ ├── app-secret.yaml │ │ │ │ ├── jwt.yaml │ │ │ │ ├── mysql.yaml │ │ │ │ └── rabbitmq.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── docker-compose.yml │ └── nginx │ │ └── nginx.conf ├── ci │ ├── docker-compose.yml │ └── mysql │ │ └── custom.cnf ├── dev │ ├── docker-compose.windows.yml │ ├── docker-compose.yml │ ├── kibana │ │ └── config │ └── nginx │ │ └── nginx.conf └── prod │ ├── docker-compose.windows.yml │ ├── docker-compose.yml │ ├── kibana │ └── config │ └── nginx │ └── nginx.conf ├── makefile ├── phpstan.neon ├── phpunit.xml.dist ├── psalm.xml ├── public └── index.php ├── rector.php ├── src ├── App │ ├── Shared │ │ ├── Application │ │ │ ├── Command │ │ │ │ ├── CommandBusInterface.php │ │ │ │ ├── CommandHandlerInterface.php │ │ │ │ └── CommandInterface.php │ │ │ └── Query │ │ │ │ ├── Collection.php │ │ │ │ ├── Event │ │ │ │ └── GetEvents │ │ │ │ │ ├── GetEventsHandler.php │ │ │ │ │ └── GetEventsQuery.php │ │ │ │ ├── Item.php │ │ │ │ ├── QueryBusInterface.php │ │ │ │ ├── QueryHandlerInterface.php │ │ │ │ └── QueryInterface.php │ │ ├── Domain │ │ │ ├── Exception │ │ │ │ └── DateTimeException.php │ │ │ ├── Specification │ │ │ │ └── AbstractSpecification.php │ │ │ └── ValueObject │ │ │ │ └── DateTime.php │ │ └── Infrastructure │ │ │ ├── Bus │ │ │ ├── AsyncEvent │ │ │ │ ├── AsyncEventHandlerInterface.php │ │ │ │ └── MessengerAsyncEventBus.php │ │ │ ├── Command │ │ │ │ └── MessengerCommandBus.php │ │ │ ├── MessageBusExceptionTrait.php │ │ │ └── Query │ │ │ │ └── MessengerQueryBus.php │ │ │ ├── Event │ │ │ ├── Consumer │ │ │ │ └── SendEventsToElasticConsumer.php │ │ │ ├── Publisher │ │ │ │ └── AsyncEventPublisher.php │ │ │ └── ReadModel │ │ │ │ └── ElasticSearchEventRepository.php │ │ │ ├── Kernel.php │ │ │ └── Persistence │ │ │ ├── Doctrine │ │ │ ├── Migrations │ │ │ │ ├── Version20180102233829.php │ │ │ │ └── Version20200727170306.php │ │ │ ├── MigrationsFactory │ │ │ │ └── ContainerAwareFactory.php │ │ │ └── Types │ │ │ │ ├── DateTimeType.php │ │ │ │ ├── EmailType.php │ │ │ │ └── HashedPasswordType.php │ │ │ └── ReadModel │ │ │ ├── Exception │ │ │ └── NotFoundException.php │ │ │ └── Repository │ │ │ ├── ElasticSearchRepository.php │ │ │ └── MysqlRepository.php │ └── User │ │ ├── Application │ │ ├── Command │ │ │ ├── ChangeEmail │ │ │ │ ├── ChangeEmailCommand.php │ │ │ │ └── ChangeEmailHandler.php │ │ │ ├── SignIn │ │ │ │ ├── SignInCommand.php │ │ │ │ └── SignInHandler.php │ │ │ └── SignUp │ │ │ │ ├── SignUpCommand.php │ │ │ │ └── SignUpHandler.php │ │ └── Query │ │ │ ├── Auth │ │ │ ├── GetAuthUserByEmail │ │ │ │ ├── GetAuthUserByEmailHandler.php │ │ │ │ └── GetAuthUserByEmailQuery.php │ │ │ └── GetToken │ │ │ │ ├── GetTokenHandler.php │ │ │ │ └── GetTokenQuery.php │ │ │ └── User │ │ │ └── FindByEmail │ │ │ ├── FindByEmailHandler.php │ │ │ └── FindByEmailQuery.php │ │ ├── Domain │ │ ├── Event │ │ │ ├── UserEmailChanged.php │ │ │ ├── UserSignedIn.php │ │ │ └── UserWasCreated.php │ │ ├── Exception │ │ │ ├── EmailAlreadyExistException.php │ │ │ ├── ForbiddenException.php │ │ │ └── InvalidCredentialsException.php │ │ ├── Repository │ │ │ ├── CheckUserByEmailInterface.php │ │ │ ├── GetUserCredentialsByEmailInterface.php │ │ │ └── UserRepositoryInterface.php │ │ ├── Specification │ │ │ └── UniqueEmailSpecificationInterface.php │ │ ├── User.php │ │ └── ValueObject │ │ │ ├── Auth │ │ │ ├── Credentials.php │ │ │ └── HashedPassword.php │ │ │ └── Email.php │ │ └── Infrastructure │ │ ├── Auth │ │ ├── Auth.php │ │ ├── AuthProvider.php │ │ ├── AuthenticationProvider.php │ │ ├── Guard │ │ │ └── LoginAuthenticator.php │ │ └── PasswordHasher.php │ │ ├── ReadModel │ │ ├── Mysql │ │ │ └── MysqlReadModelUserRepository.php │ │ ├── Projections │ │ │ ├── ConsoleProjectionFactory.php │ │ │ └── UserProjectionFactory.php │ │ └── UserView.php │ │ ├── Repository │ │ └── UserStore.php │ │ └── Specification │ │ └── UniqueEmailSpecification.php └── UI │ ├── Cli │ └── Command │ │ └── CreateUserCommand.php │ └── Http │ ├── Rest │ ├── Controller │ │ ├── Auth │ │ │ └── CheckController.php │ │ ├── CommandController.php │ │ ├── CommandQueryController.php │ │ ├── Event │ │ │ └── GetEventsController.php │ │ ├── Healthz │ │ │ └── HealthzController.php │ │ ├── QueryController.php │ │ └── User │ │ │ ├── GetUserByEmailController.php │ │ │ ├── SignUpController.php │ │ │ └── UserChangeEmailController.php │ ├── EventSubscriber │ │ ├── ExceptionSubscriber.php │ │ └── JsonBodyParserSubscriber.php │ └── Response │ │ └── OpenApi.php │ ├── Session.php │ └── Web │ ├── Controller │ ├── AbstractRenderController.php │ ├── HomeController.php │ ├── ProfileController.php │ ├── SecurityController.php │ └── SignUpController.php │ └── templates │ ├── base.html.twig │ ├── components │ ├── card.html.twig │ └── header │ │ └── menu.html.twig │ ├── home │ └── index.html.twig │ ├── profile │ └── index.html.twig │ ├── signin │ └── login.html.twig │ └── signup │ ├── index.html.twig │ └── user_created.html.twig ├── symfony.lock └── tests ├── App ├── Shared │ ├── Application │ │ ├── ApplicationTestCase.php │ │ └── Query │ │ │ ├── CollectionTest.php │ │ │ └── Event │ │ │ └── GetEvents │ │ │ └── GetEventsTest.php │ ├── Domain │ │ └── ValueObject │ │ │ └── DateTimeTest.php │ └── Infrastructure │ │ ├── Event │ │ ├── EventCollectorListener.php │ │ ├── Publisher │ │ │ └── EventPublisherTest.php │ │ └── Query │ │ │ └── EventElasticRepositoryTest.php │ │ └── Persistence │ │ └── Doctrine │ │ └── DateTimeTypeTest.php └── User │ ├── Application │ ├── Command │ │ ├── ChangeEmail │ │ │ └── ChangeEmailHandlerTest.php │ │ ├── SignIn │ │ │ └── SignInTest.php │ │ └── SignUp │ │ │ └── SignUpHandlerTest.php │ └── Query │ │ └── FindByEmail │ │ └── FindByEmailHandlerTest.php │ └── Domain │ ├── Event │ ├── UserEmailChangedTest.php │ └── UserSignedInTest.php │ ├── UserTest.php │ └── ValueObject │ ├── Auth │ └── HashedPasswordTest.php │ └── EmailTest.php ├── TidierListener.php └── UI ├── Cli ├── AbstractConsoleTestCase.php └── Command │ └── CreateUserCommandTest.php └── Http ├── Rest ├── Controller │ ├── Auth │ │ └── CheckControllerTest.php │ ├── Events │ │ └── GetEventsControllerTest.php │ ├── Healthz │ │ └── HealthzControllerTest.php │ ├── JsonApiTestCase.php │ └── User │ │ ├── ChangeEmailControllerTest.php │ │ ├── GetUserByEmailControllerTest.php │ │ └── SignUpControllerTest.php ├── EventSubscriber │ └── JsonBodyParserSubscriberTest.php └── Response │ └── OpenApiResponseTest.php └── Web └── Controller ├── CreateUserTrait.php ├── HomeControllerTest.php ├── ProfileControllerTest.php ├── SecurityControllerTest.php └── SignUpControllerTest.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.DS_Store -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/bin/console -------------------------------------------------------------------------------- /bin/deptrac.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/bin/deptrac.phar -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/broadway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/broadway.yaml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/dev/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/dev/routing.yaml -------------------------------------------------------------------------------- /config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine/mapping/user/Domain.ValueObject.Auth.Credentials.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/doctrine/mapping/user/Domain.ValueObject.Auth.Credentials.orm.xml -------------------------------------------------------------------------------- /config/packages/doctrine/mapping/user/Infrastructure.ReadModel.UserView.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/doctrine/mapping/user/Infrastructure.ReadModel.UserView.orm.xml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/framework_extra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/framework_extra.yml -------------------------------------------------------------------------------- /config/packages/jwt/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/jwt/private.pem -------------------------------------------------------------------------------- /config/packages/jwt/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/jwt/public.pem -------------------------------------------------------------------------------- /config/packages/lexik_jwt_authentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/lexik_jwt_authentication.yaml -------------------------------------------------------------------------------- /config/packages/messenger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/messenger.yaml -------------------------------------------------------------------------------- /config/packages/nelmio_api_doc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/nelmio_api_doc.yaml -------------------------------------------------------------------------------- /config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/test/dama_doctrine_test_bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/test/dama_doctrine_test_bundle.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/test/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/dev/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/routes/dev/twig.yaml -------------------------------------------------------------------------------- /config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/routes/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/routes/nelmio_api_doc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/routes/nelmio_api_doc.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/services.yaml -------------------------------------------------------------------------------- /config/services_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/config/services_test.yaml -------------------------------------------------------------------------------- /deptrac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/deptrac.yaml -------------------------------------------------------------------------------- /doc/Deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/Deployment.md -------------------------------------------------------------------------------- /doc/GetStarted/Async.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/GetStarted/Async.md -------------------------------------------------------------------------------- /doc/GetStarted/Buses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/GetStarted/Buses.md -------------------------------------------------------------------------------- /doc/GetStarted/Projections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/GetStarted/Projections.md -------------------------------------------------------------------------------- /doc/GetStarted/UseCases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/GetStarted/UseCases.md -------------------------------------------------------------------------------- /doc/GetStarted/Xdebug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/GetStarted/Xdebug.md -------------------------------------------------------------------------------- /doc/Workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/Workflow.md -------------------------------------------------------------------------------- /doc/docker-php-interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/docker-php-interpreter.png -------------------------------------------------------------------------------- /doc/xdebug-activation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/xdebug-activation.png -------------------------------------------------------------------------------- /doc/xdebug-mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/doc/xdebug-mapping.png -------------------------------------------------------------------------------- /docker-compose.ci.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /easy-coding-standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/easy-coding-standard.yml -------------------------------------------------------------------------------- /etc/artifact/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/Dockerfile -------------------------------------------------------------------------------- /etc/artifact/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/.helmignore -------------------------------------------------------------------------------- /etc/artifact/chart/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/Chart.lock -------------------------------------------------------------------------------- /etc/artifact/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/Chart.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/config/mysql.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/config/mysql.url -------------------------------------------------------------------------------- /etc/artifact/chart/config/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/config/parameters.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/NOTES.txt -------------------------------------------------------------------------------- /etc/artifact/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /etc/artifact/chart/templates/deployment-worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/deployment-worker.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/hpa.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/ingress.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/migrations.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/secrets/app-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/secrets/app-secret.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/secrets/jwt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/secrets/jwt.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/secrets/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/secrets/mysql.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/secrets/rabbitmq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/secrets/rabbitmq.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/templates/service.yaml -------------------------------------------------------------------------------- /etc/artifact/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/chart/values.yaml -------------------------------------------------------------------------------- /etc/artifact/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/docker-compose.yml -------------------------------------------------------------------------------- /etc/artifact/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/artifact/nginx/nginx.conf -------------------------------------------------------------------------------- /etc/ci/docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3.7' 2 | -------------------------------------------------------------------------------- /etc/ci/mysql/custom.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/ci/mysql/custom.cnf -------------------------------------------------------------------------------- /etc/dev/docker-compose.windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/dev/docker-compose.windows.yml -------------------------------------------------------------------------------- /etc/dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/dev/docker-compose.yml -------------------------------------------------------------------------------- /etc/dev/kibana/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/dev/kibana/config -------------------------------------------------------------------------------- /etc/dev/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/dev/nginx/nginx.conf -------------------------------------------------------------------------------- /etc/prod/docker-compose.windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/prod/docker-compose.windows.yml -------------------------------------------------------------------------------- /etc/prod/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/prod/docker-compose.yml -------------------------------------------------------------------------------- /etc/prod/kibana/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/prod/kibana/config -------------------------------------------------------------------------------- /etc/prod/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/etc/prod/nginx/nginx.conf -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/makefile -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/psalm.xml -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/public/index.php -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/rector.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Command/CommandBusInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Command/CommandBusInterface.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Command/CommandHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Command/CommandHandlerInterface.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Command/CommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Command/CommandInterface.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Query/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Query/Collection.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Query/Event/GetEvents/GetEventsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Query/Event/GetEvents/GetEventsHandler.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Query/Event/GetEvents/GetEventsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Query/Event/GetEvents/GetEventsQuery.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Query/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Query/Item.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Query/QueryBusInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Query/QueryBusInterface.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Query/QueryHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Query/QueryHandlerInterface.php -------------------------------------------------------------------------------- /src/App/Shared/Application/Query/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Application/Query/QueryInterface.php -------------------------------------------------------------------------------- /src/App/Shared/Domain/Exception/DateTimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Domain/Exception/DateTimeException.php -------------------------------------------------------------------------------- /src/App/Shared/Domain/Specification/AbstractSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Domain/Specification/AbstractSpecification.php -------------------------------------------------------------------------------- /src/App/Shared/Domain/ValueObject/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Domain/ValueObject/DateTime.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Bus/AsyncEvent/AsyncEventHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Bus/AsyncEvent/AsyncEventHandlerInterface.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Bus/AsyncEvent/MessengerAsyncEventBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Bus/AsyncEvent/MessengerAsyncEventBus.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Bus/Command/MessengerCommandBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Bus/Command/MessengerCommandBus.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Bus/MessageBusExceptionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Bus/MessageBusExceptionTrait.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Bus/Query/MessengerQueryBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Bus/Query/MessengerQueryBus.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Event/Consumer/SendEventsToElasticConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Event/Consumer/SendEventsToElasticConsumer.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Event/Publisher/AsyncEventPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Event/Publisher/AsyncEventPublisher.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Event/ReadModel/ElasticSearchEventRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Event/ReadModel/ElasticSearchEventRepository.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Kernel.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Persistence/Doctrine/Migrations/Version20180102233829.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Persistence/Doctrine/Migrations/Version20180102233829.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Persistence/Doctrine/Migrations/Version20200727170306.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Persistence/Doctrine/Migrations/Version20200727170306.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Persistence/Doctrine/MigrationsFactory/ContainerAwareFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Persistence/Doctrine/MigrationsFactory/ContainerAwareFactory.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Persistence/Doctrine/Types/DateTimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Persistence/Doctrine/Types/DateTimeType.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Persistence/Doctrine/Types/EmailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Persistence/Doctrine/Types/EmailType.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Persistence/Doctrine/Types/HashedPasswordType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Persistence/Doctrine/Types/HashedPasswordType.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Persistence/ReadModel/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Persistence/ReadModel/Exception/NotFoundException.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Persistence/ReadModel/Repository/ElasticSearchRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Persistence/ReadModel/Repository/ElasticSearchRepository.php -------------------------------------------------------------------------------- /src/App/Shared/Infrastructure/Persistence/ReadModel/Repository/MysqlRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/Shared/Infrastructure/Persistence/ReadModel/Repository/MysqlRepository.php -------------------------------------------------------------------------------- /src/App/User/Application/Command/ChangeEmail/ChangeEmailCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Command/ChangeEmail/ChangeEmailCommand.php -------------------------------------------------------------------------------- /src/App/User/Application/Command/ChangeEmail/ChangeEmailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Command/ChangeEmail/ChangeEmailHandler.php -------------------------------------------------------------------------------- /src/App/User/Application/Command/SignIn/SignInCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Command/SignIn/SignInCommand.php -------------------------------------------------------------------------------- /src/App/User/Application/Command/SignIn/SignInHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Command/SignIn/SignInHandler.php -------------------------------------------------------------------------------- /src/App/User/Application/Command/SignUp/SignUpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Command/SignUp/SignUpCommand.php -------------------------------------------------------------------------------- /src/App/User/Application/Command/SignUp/SignUpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Command/SignUp/SignUpHandler.php -------------------------------------------------------------------------------- /src/App/User/Application/Query/Auth/GetAuthUserByEmail/GetAuthUserByEmailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Query/Auth/GetAuthUserByEmail/GetAuthUserByEmailHandler.php -------------------------------------------------------------------------------- /src/App/User/Application/Query/Auth/GetAuthUserByEmail/GetAuthUserByEmailQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Query/Auth/GetAuthUserByEmail/GetAuthUserByEmailQuery.php -------------------------------------------------------------------------------- /src/App/User/Application/Query/Auth/GetToken/GetTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Query/Auth/GetToken/GetTokenHandler.php -------------------------------------------------------------------------------- /src/App/User/Application/Query/Auth/GetToken/GetTokenQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Query/Auth/GetToken/GetTokenQuery.php -------------------------------------------------------------------------------- /src/App/User/Application/Query/User/FindByEmail/FindByEmailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Query/User/FindByEmail/FindByEmailHandler.php -------------------------------------------------------------------------------- /src/App/User/Application/Query/User/FindByEmail/FindByEmailQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Application/Query/User/FindByEmail/FindByEmailQuery.php -------------------------------------------------------------------------------- /src/App/User/Domain/Event/UserEmailChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Event/UserEmailChanged.php -------------------------------------------------------------------------------- /src/App/User/Domain/Event/UserSignedIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Event/UserSignedIn.php -------------------------------------------------------------------------------- /src/App/User/Domain/Event/UserWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Event/UserWasCreated.php -------------------------------------------------------------------------------- /src/App/User/Domain/Exception/EmailAlreadyExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Exception/EmailAlreadyExistException.php -------------------------------------------------------------------------------- /src/App/User/Domain/Exception/ForbiddenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Exception/ForbiddenException.php -------------------------------------------------------------------------------- /src/App/User/Domain/Exception/InvalidCredentialsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Exception/InvalidCredentialsException.php -------------------------------------------------------------------------------- /src/App/User/Domain/Repository/CheckUserByEmailInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Repository/CheckUserByEmailInterface.php -------------------------------------------------------------------------------- /src/App/User/Domain/Repository/GetUserCredentialsByEmailInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Repository/GetUserCredentialsByEmailInterface.php -------------------------------------------------------------------------------- /src/App/User/Domain/Repository/UserRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Repository/UserRepositoryInterface.php -------------------------------------------------------------------------------- /src/App/User/Domain/Specification/UniqueEmailSpecificationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/Specification/UniqueEmailSpecificationInterface.php -------------------------------------------------------------------------------- /src/App/User/Domain/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/User.php -------------------------------------------------------------------------------- /src/App/User/Domain/ValueObject/Auth/Credentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/ValueObject/Auth/Credentials.php -------------------------------------------------------------------------------- /src/App/User/Domain/ValueObject/Auth/HashedPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/ValueObject/Auth/HashedPassword.php -------------------------------------------------------------------------------- /src/App/User/Domain/ValueObject/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Domain/ValueObject/Email.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/Auth/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/Auth/Auth.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/Auth/AuthProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/Auth/AuthProvider.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/Auth/AuthenticationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/Auth/AuthenticationProvider.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/Auth/Guard/LoginAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/Auth/Guard/LoginAuthenticator.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/Auth/PasswordHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/Auth/PasswordHasher.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/ReadModel/Mysql/MysqlReadModelUserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/ReadModel/Mysql/MysqlReadModelUserRepository.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/ReadModel/Projections/ConsoleProjectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/ReadModel/Projections/ConsoleProjectionFactory.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/ReadModel/Projections/UserProjectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/ReadModel/Projections/UserProjectionFactory.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/ReadModel/UserView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/ReadModel/UserView.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/Repository/UserStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/Repository/UserStore.php -------------------------------------------------------------------------------- /src/App/User/Infrastructure/Specification/UniqueEmailSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/App/User/Infrastructure/Specification/UniqueEmailSpecification.php -------------------------------------------------------------------------------- /src/UI/Cli/Command/CreateUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Cli/Command/CreateUserCommand.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Controller/Auth/CheckController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Controller/Auth/CheckController.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Controller/CommandController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Controller/CommandController.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Controller/CommandQueryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Controller/CommandQueryController.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Controller/Event/GetEventsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Controller/Event/GetEventsController.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Controller/Healthz/HealthzController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Controller/Healthz/HealthzController.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Controller/QueryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Controller/QueryController.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Controller/User/GetUserByEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Controller/User/GetUserByEmailController.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Controller/User/SignUpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Controller/User/SignUpController.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Controller/User/UserChangeEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Controller/User/UserChangeEmailController.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/EventSubscriber/ExceptionSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/EventSubscriber/ExceptionSubscriber.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/EventSubscriber/JsonBodyParserSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/EventSubscriber/JsonBodyParserSubscriber.php -------------------------------------------------------------------------------- /src/UI/Http/Rest/Response/OpenApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Rest/Response/OpenApi.php -------------------------------------------------------------------------------- /src/UI/Http/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Session.php -------------------------------------------------------------------------------- /src/UI/Http/Web/Controller/AbstractRenderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/Controller/AbstractRenderController.php -------------------------------------------------------------------------------- /src/UI/Http/Web/Controller/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/Controller/HomeController.php -------------------------------------------------------------------------------- /src/UI/Http/Web/Controller/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/Controller/ProfileController.php -------------------------------------------------------------------------------- /src/UI/Http/Web/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/UI/Http/Web/Controller/SignUpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/Controller/SignUpController.php -------------------------------------------------------------------------------- /src/UI/Http/Web/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/templates/base.html.twig -------------------------------------------------------------------------------- /src/UI/Http/Web/templates/components/card.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/templates/components/card.html.twig -------------------------------------------------------------------------------- /src/UI/Http/Web/templates/components/header/menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/templates/components/header/menu.html.twig -------------------------------------------------------------------------------- /src/UI/Http/Web/templates/home/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/templates/home/index.html.twig -------------------------------------------------------------------------------- /src/UI/Http/Web/templates/profile/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/templates/profile/index.html.twig -------------------------------------------------------------------------------- /src/UI/Http/Web/templates/signin/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/templates/signin/login.html.twig -------------------------------------------------------------------------------- /src/UI/Http/Web/templates/signup/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/templates/signup/index.html.twig -------------------------------------------------------------------------------- /src/UI/Http/Web/templates/signup/user_created.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/src/UI/Http/Web/templates/signup/user_created.html.twig -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/symfony.lock -------------------------------------------------------------------------------- /tests/App/Shared/Application/ApplicationTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/Shared/Application/ApplicationTestCase.php -------------------------------------------------------------------------------- /tests/App/Shared/Application/Query/CollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/Shared/Application/Query/CollectionTest.php -------------------------------------------------------------------------------- /tests/App/Shared/Application/Query/Event/GetEvents/GetEventsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/Shared/Application/Query/Event/GetEvents/GetEventsTest.php -------------------------------------------------------------------------------- /tests/App/Shared/Domain/ValueObject/DateTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/Shared/Domain/ValueObject/DateTimeTest.php -------------------------------------------------------------------------------- /tests/App/Shared/Infrastructure/Event/EventCollectorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/Shared/Infrastructure/Event/EventCollectorListener.php -------------------------------------------------------------------------------- /tests/App/Shared/Infrastructure/Event/Publisher/EventPublisherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/Shared/Infrastructure/Event/Publisher/EventPublisherTest.php -------------------------------------------------------------------------------- /tests/App/Shared/Infrastructure/Event/Query/EventElasticRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/Shared/Infrastructure/Event/Query/EventElasticRepositoryTest.php -------------------------------------------------------------------------------- /tests/App/Shared/Infrastructure/Persistence/Doctrine/DateTimeTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/Shared/Infrastructure/Persistence/Doctrine/DateTimeTypeTest.php -------------------------------------------------------------------------------- /tests/App/User/Application/Command/ChangeEmail/ChangeEmailHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/User/Application/Command/ChangeEmail/ChangeEmailHandlerTest.php -------------------------------------------------------------------------------- /tests/App/User/Application/Command/SignIn/SignInTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/User/Application/Command/SignIn/SignInTest.php -------------------------------------------------------------------------------- /tests/App/User/Application/Command/SignUp/SignUpHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/User/Application/Command/SignUp/SignUpHandlerTest.php -------------------------------------------------------------------------------- /tests/App/User/Application/Query/FindByEmail/FindByEmailHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/User/Application/Query/FindByEmail/FindByEmailHandlerTest.php -------------------------------------------------------------------------------- /tests/App/User/Domain/Event/UserEmailChangedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/User/Domain/Event/UserEmailChangedTest.php -------------------------------------------------------------------------------- /tests/App/User/Domain/Event/UserSignedInTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/User/Domain/Event/UserSignedInTest.php -------------------------------------------------------------------------------- /tests/App/User/Domain/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/User/Domain/UserTest.php -------------------------------------------------------------------------------- /tests/App/User/Domain/ValueObject/Auth/HashedPasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/User/Domain/ValueObject/Auth/HashedPasswordTest.php -------------------------------------------------------------------------------- /tests/App/User/Domain/ValueObject/EmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/App/User/Domain/ValueObject/EmailTest.php -------------------------------------------------------------------------------- /tests/TidierListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/TidierListener.php -------------------------------------------------------------------------------- /tests/UI/Cli/AbstractConsoleTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Cli/AbstractConsoleTestCase.php -------------------------------------------------------------------------------- /tests/UI/Cli/Command/CreateUserCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Cli/Command/CreateUserCommandTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Rest/Controller/Auth/CheckControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Rest/Controller/Auth/CheckControllerTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Rest/Controller/Events/GetEventsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Rest/Controller/Events/GetEventsControllerTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Rest/Controller/Healthz/HealthzControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Rest/Controller/Healthz/HealthzControllerTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Rest/Controller/JsonApiTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Rest/Controller/JsonApiTestCase.php -------------------------------------------------------------------------------- /tests/UI/Http/Rest/Controller/User/ChangeEmailControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Rest/Controller/User/ChangeEmailControllerTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Rest/Controller/User/GetUserByEmailControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Rest/Controller/User/GetUserByEmailControllerTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Rest/Controller/User/SignUpControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Rest/Controller/User/SignUpControllerTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Rest/EventSubscriber/JsonBodyParserSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Rest/EventSubscriber/JsonBodyParserSubscriberTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Rest/Response/OpenApiResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Rest/Response/OpenApiResponseTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Web/Controller/CreateUserTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Web/Controller/CreateUserTrait.php -------------------------------------------------------------------------------- /tests/UI/Http/Web/Controller/HomeControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Web/Controller/HomeControllerTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Web/Controller/ProfileControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Web/Controller/ProfileControllerTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Web/Controller/SecurityControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Web/Controller/SecurityControllerTest.php -------------------------------------------------------------------------------- /tests/UI/Http/Web/Controller/SignUpControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/symfony-6-es-cqrs-boilerplate/HEAD/tests/UI/Http/Web/Controller/SignUpControllerTest.php --------------------------------------------------------------------------------