gitextract_iisn5zjd/ ├── .blackfire.yaml ├── .gitignore ├── .symfony/ │ ├── config.vcl │ ├── routes.yaml │ └── services.yaml ├── .symfony.cloud.yaml ├── Makefile ├── assets/ │ ├── css/ │ │ ├── _variables.scss │ │ └── app.scss │ └── js/ │ └── app.js ├── bin/ │ ├── console │ └── phpunit ├── blackfire-player.phar ├── composer.json ├── config/ │ ├── bootstrap.php │ ├── bundles.php │ ├── packages/ │ │ ├── api_platform.yaml │ │ ├── assets.yaml │ │ ├── cache.yaml │ │ ├── dev/ │ │ │ ├── debug.yaml │ │ │ ├── easy_log_handler.yaml │ │ │ ├── monolog.yaml │ │ │ └── web_profiler.yaml │ │ ├── doctrine.yaml │ │ ├── doctrine_migrations.yaml │ │ ├── easy_admin.yaml │ │ ├── framework.yaml │ │ ├── mailer.yaml │ │ ├── messenger.yaml │ │ ├── nelmio_cors.yaml │ │ ├── notifier.yaml │ │ ├── prod/ │ │ │ ├── doctrine.yaml │ │ │ ├── monolog.yaml │ │ │ ├── routing.yaml │ │ │ └── webpack_encore.yaml │ │ ├── routing.yaml │ │ ├── security.yaml │ │ ├── sensio_framework_extra.yaml │ │ ├── test/ │ │ │ ├── dama_doctrine_test_bundle.yaml │ │ │ ├── framework.yaml │ │ │ ├── monolog.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ ├── web_profiler.yaml │ │ │ └── webpack_encore.yaml │ │ ├── translation.yaml │ │ ├── twig.yaml │ │ ├── validator.yaml │ │ ├── webpack_encore.yaml │ │ └── workflow.yaml │ ├── routes/ │ │ ├── annotations.yaml │ │ ├── api_platform.yaml │ │ ├── dev/ │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── easy_admin.yaml │ ├── routes.yaml │ ├── secrets/ │ │ ├── dev/ │ │ │ ├── dev.AKISMET_KEY.ca01fb.php │ │ │ ├── dev.SLACK_DSN.b2b579.php │ │ │ ├── dev.decrypt.private.php │ │ │ ├── dev.encrypt.public.php │ │ │ └── dev.list.php │ │ ├── prod/ │ │ │ ├── prod.AKISMET_KEY.ca01fb.php │ │ │ ├── prod.SLACK_DSN.b2b579.php │ │ │ ├── prod.encrypt.public.php │ │ │ └── prod.list.php │ │ └── test/ │ │ ├── test.AKISMET_KEY.ca01fb.php │ │ ├── test.decrypt.private.php │ │ ├── test.encrypt.public.php │ │ └── test.list.php │ └── services.yaml ├── docker-compose.yaml ├── package.json ├── php.ini ├── phpunit.xml.dist ├── public/ │ └── index.php ├── spa/ │ ├── .gitignore │ ├── .symfony.cloud.yaml │ ├── assets/ │ │ └── css/ │ │ ├── _variables.scss │ │ └── app.scss │ ├── package.json │ ├── src/ │ │ ├── api/ │ │ │ └── api.js │ │ ├── app.js │ │ ├── index.ejs │ │ └── pages/ │ │ ├── conference.js │ │ └── home.js │ └── webpack.config.js ├── src/ │ ├── Api/ │ │ └── FilterPublishedCommentQueryExtension.php │ ├── Command/ │ │ ├── CommentCleanupCommand.php │ │ └── StepInfoCommand.php │ ├── Controller/ │ │ ├── .gitignore │ │ ├── AdminController.php │ │ ├── ConferenceController.php │ │ └── SecurityController.php │ ├── DataFixtures/ │ │ └── AppFixtures.php │ ├── Entity/ │ │ ├── .gitignore │ │ ├── Admin.php │ │ ├── Comment.php │ │ └── Conference.php │ ├── EntityListener/ │ │ └── ConferenceEntityListener.php │ ├── Form/ │ │ └── CommentFormType.php │ ├── ImageOptimizer.php │ ├── Kernel.php │ ├── Message/ │ │ └── CommentMessage.php │ ├── MessageHandler/ │ │ └── CommentMessageHandler.php │ ├── Migrations/ │ │ ├── .gitignore │ │ ├── Version20200107080917.php │ │ ├── Version20200107081222.php │ │ ├── Version20200107081238.php │ │ ├── Version20200107081419.php │ │ └── Version20200107081708.php │ ├── Notification/ │ │ └── CommentReviewNotification.php │ ├── Repository/ │ │ ├── .gitignore │ │ ├── AdminRepository.php │ │ ├── CommentRepository.php │ │ └── ConferenceRepository.php │ ├── Security/ │ │ └── AppAuthenticator.php │ └── SpamChecker.php ├── templates/ │ ├── admin/ │ │ └── review.html.twig │ ├── base.html.twig │ ├── conference/ │ │ ├── header.html.twig │ │ ├── index.html.twig │ │ └── show.html.twig │ ├── emails/ │ │ └── comment_notification.html.twig │ └── security/ │ └── login.html.twig ├── tests/ │ ├── .gitignore │ ├── Controller/ │ │ └── ConferenceControllerTest.php │ └── SpamCheckerTest.php ├── translations/ │ ├── .gitignore │ ├── messages+intl-icu.en.xlf │ └── messages+intl-icu.fr.xlf └── webpack.config.js