├── .codecov.yml ├── .dockerignore ├── .editorconfig ├── .env.dist ├── .gitignore ├── .php_cs.dist ├── .scrutinizer.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Makefile.custom.dist ├── README.md ├── app.json ├── appveyor.yml ├── bin ├── console ├── deploy ├── lib │ └── docker.php ├── run ├── stop └── up.sh ├── codeception.yml ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── compiler_pass.php ├── doctrine │ ├── blog │ │ └── post │ │ │ ├── Post.orm.yml │ │ │ ├── comment │ │ │ └── Comment.orm.yml │ │ │ └── tag │ │ │ └── Tag.orm.yml │ └── user │ │ └── User.orm.yml ├── packages │ ├── dev │ │ ├── monolog.yaml │ │ ├── routing.yaml │ │ ├── security_checker.yaml │ │ ├── swiftmailer.yaml │ │ └── web_profiler.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── framework_extra.yaml │ ├── nyholm_psr7.yaml │ ├── prod │ │ ├── doctrine.yaml │ │ ├── framework.yaml │ │ └── monolog.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── swiftmailer.yaml │ ├── test │ │ ├── framework.yaml │ │ ├── hgraca_doctrine_test_db_regeneration.yaml │ │ ├── security.yaml │ │ ├── swiftmailer.yaml │ │ ├── twig.yaml │ │ └── web_profiler.yaml │ ├── translation.yaml │ ├── twig.yaml │ └── twig_extensions.yaml ├── parameters │ ├── dev.yaml │ ├── prod.yaml │ └── test.yaml ├── routes │ ├── dev │ │ ├── index.yaml │ │ ├── twig.yaml │ │ └── web_profiler.yaml │ └── prod │ │ ├── index.yaml │ │ └── web │ │ ├── blog │ │ ├── admin_posts.yaml │ │ ├── anonymous_post.yaml │ │ ├── anonymous_posts.yaml │ │ ├── index.yaml │ │ └── user_post.yaml │ │ ├── homepage.yaml │ │ ├── index.yaml │ │ └── login.yaml ├── services │ ├── dev.yaml │ ├── prod.yaml │ ├── prod │ │ ├── core │ │ │ ├── component │ │ │ │ └── blog.yaml │ │ │ └── port │ │ │ │ ├── notification.yaml │ │ │ │ ├── persistence.yaml │ │ │ │ └── validation.yaml │ │ ├── infrastructure │ │ │ └── notification.yaml │ │ └── presentation │ │ │ └── web │ │ │ └── core │ │ │ ├── controllers.yaml │ │ │ └── port │ │ │ ├── exception.yaml │ │ │ └── flash_message.yaml │ └── test.yaml └── validator │ └── validation.yaml ├── depfile.classes.yml ├── depfile.components.yml ├── depfile.layers.yml ├── docs ├── IDE │ └── PHPStorm │ │ ├── IDE_PHPSTORM_cli_interpreter.png │ │ ├── IDE_PHPSTORM_servers.png │ │ └── IDE_PHPSTORM_tests_run.png └── images │ └── dependencies │ ├── deptrac_class.png │ ├── deptrac_components.png │ └── deptrac_layers.png ├── lib └── php-extension │ ├── src │ ├── AbstractStaticClass.php │ ├── ConstructableFromArrayInterface.php │ ├── ConstructableFromArrayTrait.php │ ├── DateTime │ │ ├── DateTimeException.php │ │ ├── DateTimeGenerator.php │ │ └── MomentFormatConverter.php │ ├── Enum │ │ └── AbstractEnum.php │ ├── EqualityInterface.php │ ├── Exception │ │ ├── AcmeExceptionInterface.php │ │ ├── AcmeExceptionTrait.php │ │ ├── AcmeLogicException.php │ │ ├── AcmeOverloadingException.php │ │ └── AcmeRuntimeException.php │ ├── Helper │ │ ├── ClassHelper.php │ │ ├── ReflectionHelper.php │ │ ├── StringHelper.php │ │ └── TypeHelper.php │ ├── Identity │ │ ├── AbstractId.php │ │ ├── AbstractIntId.php │ │ ├── AbstractStringId.php │ │ ├── AbstractUuidId.php │ │ └── InvalidIdException.php │ ├── ObjectDispatcher │ │ ├── AbstractDispatcher.php │ │ └── Destination.php │ ├── ScalarObjectInterface.php │ ├── String │ │ ├── Markdown.php │ │ └── Slugger.php │ └── Uuid │ │ ├── InvalidUuidStringException.php │ │ ├── Uuid.php │ │ └── UuidGenerator.php │ └── tests │ ├── AbstractUnitTest.php │ ├── ConstructableFromArrayTraitUnitTest.php │ ├── DateTime │ └── DateTimeGeneratorUnitTest.php │ ├── DummyConstructableFromArray.php │ ├── Enum │ ├── AbstractEnumUnitTest.php │ ├── Test2Enum.php │ └── TestEnum.php │ ├── Exception │ ├── AcmeExceptionTraitUnitTest.php │ ├── AcmeLogicExceptionUnitTest.php │ ├── AcmeRuntimeExceptionUnitTest.php │ └── DummyException.php │ ├── Helper │ ├── ClassHelperUnitTest.php │ ├── DummyClass.php │ ├── DummyClassParent.php │ ├── ReflectionHelperUnitTest.php │ ├── StringHelperUnitTest.php │ └── TypeHelperUnitTest.php │ ├── ObjectDispatcher │ ├── AbstractDispatcherUnitTest.php │ ├── DummyDispatcher.php │ └── DummyListener.php │ ├── String │ └── SluggerUnitTest.php │ └── Uuid │ ├── UuidGeneratorUnitTest.php │ └── UuidUnitTest.php ├── package.json ├── phpunit.xml.dist ├── public ├── apple-touch-icon.png ├── build │ ├── css │ │ ├── admin.css │ │ └── app.css │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── lato-bold-italic.woff │ │ ├── lato-bold-italic.woff2 │ │ ├── lato-bold.woff │ │ ├── lato-bold.woff2 │ │ ├── lato-normal-italic.woff │ │ ├── lato-normal-italic.woff2 │ │ ├── lato-normal.woff │ │ └── lato-normal.woff2 │ ├── images │ │ ├── fontawesome-webfont.svg │ │ └── glyphicons-halflings-regular.svg │ ├── js │ │ ├── admin.js │ │ ├── app.js │ │ ├── common.js │ │ ├── login.js │ │ └── search.js │ ├── manifest.js │ └── manifest.json ├── bundles │ └── whiteoctoberpagerfanta ├── favicon.ico ├── index.php └── robots.txt ├── src ├── Core │ ├── Component │ │ ├── Blog │ │ │ ├── Application │ │ │ │ ├── Auth │ │ │ │ │ └── PostVoter.php │ │ │ │ ├── Event │ │ │ │ │ └── CommentCreatedListener.php │ │ │ │ ├── Notification │ │ │ │ │ └── NewComment │ │ │ │ │ │ ├── Email │ │ │ │ │ │ ├── NewCommentEmail.html.twig │ │ │ │ │ │ ├── NewCommentEmail.txt.twig │ │ │ │ │ │ ├── NewCommentEmailGenerator.php │ │ │ │ │ │ ├── NewCommentEmailViewModel.php │ │ │ │ │ │ └── NewCommentEmailVoter.php │ │ │ │ │ │ ├── NewCommentNotification.php │ │ │ │ │ │ ├── Push │ │ │ │ │ │ ├── NewCommentPushGenerator.php │ │ │ │ │ │ └── NewCommentPushVoter.php │ │ │ │ │ │ └── Sms │ │ │ │ │ │ ├── NewCommentSmsGenerator.php │ │ │ │ │ │ └── NewCommentSmsVoter.php │ │ │ │ ├── Query │ │ │ │ │ ├── CommentListQueryInterface.php │ │ │ │ │ ├── DQL │ │ │ │ │ │ ├── CommentListQuery.php │ │ │ │ │ │ ├── FindHighestPostSlugSuffixQuery.php │ │ │ │ │ │ ├── FindLatestPostsQuery.php │ │ │ │ │ │ ├── FindPostsBySearchRequestQuery.php │ │ │ │ │ │ ├── PostListQuery.php │ │ │ │ │ │ ├── PostQuery.php │ │ │ │ │ │ ├── PostSlugExistsQuery.php │ │ │ │ │ │ └── TagListQuery.php │ │ │ │ │ ├── FindHighestPostSlugSuffixQueryInterface.php │ │ │ │ │ ├── FindLatestPostsQueryInterface.php │ │ │ │ │ ├── FindPostsBySearchRequestQueryInterface.php │ │ │ │ │ ├── LatestPostWithAuthorAndTagsDto.php │ │ │ │ │ ├── PostDto.php │ │ │ │ │ ├── PostListQueryInterface.php │ │ │ │ │ ├── PostQueryInterface.php │ │ │ │ │ ├── PostSlugExistsQueryInterface.php │ │ │ │ │ ├── PostWithAuthorAndTagsDto.php │ │ │ │ │ ├── PostWithAuthorDto.php │ │ │ │ │ ├── PostsBySearchRequestDto.php │ │ │ │ │ └── TagListQueryInterface.php │ │ │ │ ├── Repository │ │ │ │ │ ├── DQL │ │ │ │ │ │ └── PostRepository.php │ │ │ │ │ └── PostRepositoryInterface.php │ │ │ │ └── Service │ │ │ │ │ ├── CommentService.php │ │ │ │ │ └── PostService.php │ │ │ └── Domain │ │ │ │ └── Post │ │ │ │ ├── Comment │ │ │ │ └── Comment.php │ │ │ │ ├── Post.php │ │ │ │ ├── PostId.php │ │ │ │ ├── SlugIsImmutableException.php │ │ │ │ └── Tag │ │ │ │ ├── Tag.php │ │ │ │ └── TagId.php │ │ └── User │ │ │ ├── Application │ │ │ ├── Repository │ │ │ │ ├── DQL │ │ │ │ │ └── UserRepository.php │ │ │ │ └── UserRepositoryInterface.php │ │ │ ├── Service │ │ │ │ └── UserService.php │ │ │ └── Validation │ │ │ │ └── UserValidationService.php │ │ │ └── Domain │ │ │ └── User │ │ │ └── User.php │ ├── Port │ │ ├── Auth │ │ │ ├── Authentication │ │ │ │ ├── AuthenticationException.php │ │ │ │ ├── AuthenticationServiceInterface.php │ │ │ │ ├── NoUserAuthenticatedException.php │ │ │ │ └── UserSecretEncoderInterface.php │ │ │ └── Authorization │ │ │ │ ├── AccessDeniedException.php │ │ │ │ ├── AuthorizationServiceInterface.php │ │ │ │ └── ResourceActionVoterInterface.php │ │ ├── EventDispatcher │ │ │ ├── BufferedEventDispatcherInterface.php │ │ │ └── EventDispatcherInterface.php │ │ ├── Lock │ │ │ ├── LockAlreadyExistsException.php │ │ │ ├── LockManagerInterface.php │ │ │ └── LockNotFoundException.php │ │ ├── Notification │ │ │ ├── Client │ │ │ │ ├── Email │ │ │ │ │ ├── Email.php │ │ │ │ │ ├── EmailAddress.php │ │ │ │ │ ├── EmailAttachment.php │ │ │ │ │ ├── EmailAttachmentInterface.php │ │ │ │ │ ├── EmailGenerator.php │ │ │ │ │ ├── EmailHeader.php │ │ │ │ │ ├── EmailPart.php │ │ │ │ │ ├── EmailerInterface.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── EmailAddressNotFoundException.php │ │ │ │ │ │ ├── EmailAttachmentException.php │ │ │ │ │ │ └── EmailPartAlreadyProvidedException.php │ │ │ │ │ └── MimeType.php │ │ │ │ ├── Push │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── PushNotifierException.php │ │ │ │ │ ├── PushNotification.php │ │ │ │ │ ├── PushNotifierInterface.php │ │ │ │ │ └── PushNotifierResponse.php │ │ │ │ └── Sms │ │ │ │ │ ├── Exception │ │ │ │ │ └── SmsNotifierException.php │ │ │ │ │ ├── Sms.php │ │ │ │ │ └── SmsNotifierInterface.php │ │ │ ├── Exception │ │ │ │ └── UndeliverableNotificationException.php │ │ │ ├── NotificationInterface.php │ │ │ └── NotificationServiceInterface.php │ │ ├── Persistence │ │ │ ├── DQL │ │ │ │ └── DqlQueryBuilderInterface.php │ │ │ ├── Exception │ │ │ │ ├── CanOnlyHydrateFromArrayException.php │ │ │ │ ├── EmptyQueryResultException.php │ │ │ │ ├── NotConstructableFromArrayException.php │ │ │ │ ├── NotUniqueQueryResultException.php │ │ │ │ ├── QueryServiceIsNotCallableException.php │ │ │ │ ├── UnableToHandleQueryException.php │ │ │ │ └── UnknownHydrationModeException.php │ │ │ ├── KeyValueStorageInterface.php │ │ │ ├── PersistenceServiceInterface.php │ │ │ ├── QueryBuilderInterface.php │ │ │ ├── QueryInterface.php │ │ │ ├── QueryServiceInterface.php │ │ │ ├── QueryServiceRouter.php │ │ │ ├── QueryServiceRouterInterface.php │ │ │ ├── ResultCollection.php │ │ │ ├── ResultCollectionInterface.php │ │ │ ├── TransactionServiceInterface.php │ │ │ ├── UserKeyValueStorage.php │ │ │ └── UserKeyValueStorageInterface.php │ │ ├── Router │ │ │ ├── UrlGeneratorInterface.php │ │ │ └── UrlType.php │ │ ├── TemplateEngine │ │ │ ├── EmailTemplateViewModelInterface.php │ │ │ ├── NullTemplateViewModel.php │ │ │ ├── TemplateEngineInterface.php │ │ │ └── TemplateViewModelInterface.php │ │ ├── Translation │ │ │ └── TranslatorInterface.php │ │ └── Validation │ │ │ └── PhoneNumber │ │ │ ├── PhoneNumberCouldNotBeParsedException.php │ │ │ ├── PhoneNumberException.php │ │ │ ├── PhoneNumberInvalidException.php │ │ │ └── PhoneNumberValidatorInterface.php │ └── SharedKernel │ │ ├── Component │ │ ├── Blog │ │ │ ├── Application │ │ │ │ └── Event │ │ │ │ │ └── CommentCreatedEvent.php │ │ │ └── Domain │ │ │ │ └── Post │ │ │ │ └── Comment │ │ │ │ └── CommentId.php │ │ └── User │ │ │ └── Domain │ │ │ └── User │ │ │ └── UserId.php │ │ ├── Exception │ │ ├── AppLogicException.php │ │ ├── AppRuntimeException.php │ │ └── InvalidArgumentException.php │ │ └── Port │ │ ├── EventDispatcher │ │ └── EventInterface.php │ │ └── Notification │ │ └── Client │ │ └── Email │ │ └── Template │ │ ├── base.html.twig │ │ ├── base.txt.twig │ │ ├── salutation.html.twig │ │ ├── salutation.txt.twig │ │ ├── signature.html.twig │ │ └── signature.txt.twig ├── Infrastructure │ ├── Auth │ │ ├── Authentication │ │ │ ├── AuthenticationService.php │ │ │ ├── SecurityUser.php │ │ │ ├── SecurityUserProvider.php │ │ │ ├── SecurityUserQuery.php │ │ │ └── UserSecretEncoder.php │ │ └── Authorization │ │ │ ├── AccessDeniedExceptionSubscriber.php │ │ │ ├── AuthorizationService.php │ │ │ └── Voter │ │ │ └── PostVoterAdapter.php │ ├── EventDispatcher │ │ ├── EventFlusherSubscriber.php │ │ ├── SyncEventDispatcher.php │ │ └── SyncEventDispatcherCompilerPass.php │ ├── Framework │ │ └── Symfony │ │ │ └── Kernel.php │ ├── Lock │ │ └── Symfony │ │ │ └── LockManager.php │ ├── Notification │ │ ├── Client │ │ │ ├── Email │ │ │ │ └── SwiftMailer │ │ │ │ │ ├── Mapper │ │ │ │ │ ├── EmailMapper.php │ │ │ │ │ ├── MandrillSwiftEmailMapper.php │ │ │ │ │ └── SwiftEmailMapper.php │ │ │ │ │ └── SwiftMailer.php │ │ │ ├── Push │ │ │ │ └── OneSignal │ │ │ │ │ └── OneSignalClient.php │ │ │ └── Sms │ │ │ │ ├── AbstractClient.php │ │ │ │ ├── MessageBird │ │ │ │ └── MessageBirdClient.php │ │ │ │ └── Twilio │ │ │ │ └── TwilioClient.php │ │ ├── Config │ │ │ ├── NotificationConfigCompilerPass.php │ │ │ └── NotificationConfigException.php │ │ ├── NotificationService.php │ │ ├── NotificationType.php │ │ ├── Settings │ │ │ ├── NotificationSettingsServiceInterface.php │ │ │ ├── PushNotificationSettingsService.php │ │ │ └── SmsNotificationSettingsService.php │ │ ├── Strategy │ │ │ ├── AbstractNotificationStrategy.php │ │ │ ├── Email │ │ │ │ └── EmailNotificationStrategy.php │ │ │ ├── InvalidGeneratorException.php │ │ │ ├── InvalidVoterException.php │ │ │ ├── NotificationStrategyInterface.php │ │ │ ├── Push │ │ │ │ └── PushNotificationStrategy.php │ │ │ ├── Sms │ │ │ │ └── SmsNotificationStrategy.php │ │ │ └── UnprocessableNotificationException.php │ │ └── StrategyDefinition.php │ ├── Persistence │ │ ├── Doctrine │ │ │ ├── DqlPersistenceService.php │ │ │ ├── DqlQuery.php │ │ │ ├── DqlQueryBuilder.php │ │ │ ├── KeyValueStorage.php │ │ │ └── Type │ │ │ │ ├── AbstractBinaryUuidType.php │ │ │ │ ├── AbstractEnumType.php │ │ │ │ ├── AbstractIntType.php │ │ │ │ ├── AbstractStringType.php │ │ │ │ ├── AbstractUuidType.php │ │ │ │ ├── BinaryUuidType.php │ │ │ │ ├── CommentIdType.php │ │ │ │ ├── PostIdType.php │ │ │ │ ├── TagIdType.php │ │ │ │ ├── TypeTrait.php │ │ │ │ ├── UserIdType.php │ │ │ │ └── UuidType.php │ │ ├── InMemory │ │ │ └── KeyValueStorage.php │ │ ├── RequestTransactionSubscriber.php │ │ └── Session │ │ │ └── KeyValueStorage.php │ ├── Router │ │ └── Symfony │ │ │ └── UrlGeneratorService.php │ ├── TemplateEngine │ │ └── Twig │ │ │ ├── Extension │ │ │ ├── Md2HtmlExtension.php │ │ │ └── SourceCode │ │ │ │ ├── ControllerSubscriber.php │ │ │ │ ├── SourceCodeExtension.php │ │ │ │ └── source_code.html.twig │ │ │ └── TemplateEngine.php │ ├── Translation │ │ └── Symfony │ │ │ └── Translator.php │ └── Validation │ │ └── PhoneNumber │ │ └── LibPhoneNumber │ │ └── PhoneNumberValidator.php └── Presentation │ ├── Console │ ├── Component │ │ └── User │ │ │ ├── AddUserCommand.php │ │ │ ├── DeleteUserCommand.php │ │ │ └── ListUsersCommand.php │ └── EventSubscriber │ │ └── CheckRequirementsSubscriber.php │ └── Web │ ├── Core │ ├── Component │ │ ├── About │ │ │ └── Anonymous │ │ │ │ └── about.html.twig │ │ ├── BackslashRedirectController.php │ │ ├── Blog │ │ │ ├── Admin │ │ │ │ ├── Post │ │ │ │ │ ├── EditViewModel.php │ │ │ │ │ ├── GetViewModel.php │ │ │ │ │ ├── PostController.php │ │ │ │ │ ├── _delete_form.html.twig │ │ │ │ │ ├── _delete_post_confirmation.html.twig │ │ │ │ │ ├── _form.html.twig │ │ │ │ │ ├── edit.html.twig │ │ │ │ │ └── get.html.twig │ │ │ │ └── PostList │ │ │ │ │ ├── GetViewModel.php │ │ │ │ │ ├── NewViewModel.php │ │ │ │ │ ├── PostListController.php │ │ │ │ │ ├── get.html.twig │ │ │ │ │ └── new.html.twig │ │ │ ├── Anonymous │ │ │ │ ├── Post │ │ │ │ │ ├── GetViewModel.php │ │ │ │ │ ├── PostController.php │ │ │ │ │ └── get.html.twig │ │ │ │ ├── PostList │ │ │ │ │ ├── GetHtmlViewModel.php │ │ │ │ │ ├── GetXmlViewModel.php │ │ │ │ │ ├── PostListController.php │ │ │ │ │ ├── get.html.twig │ │ │ │ │ ├── get.xml.twig │ │ │ │ │ ├── jquery.instantSearch.js │ │ │ │ │ ├── search.html.twig │ │ │ │ │ └── search.js │ │ │ │ └── _rss.html.twig │ │ │ ├── User │ │ │ │ └── Comment │ │ │ │ │ ├── CommentController.php │ │ │ │ │ ├── EditViewModel.php │ │ │ │ │ ├── edit.html.twig │ │ │ │ │ └── edit_error.html.twig │ │ │ └── _post_tags.html.twig │ │ ├── Homepage │ │ │ └── Anonymous │ │ │ │ └── homepage.html.twig │ │ ├── Login │ │ │ └── Anonymous │ │ │ │ ├── LoginViewModel.php │ │ │ │ ├── SecurityController.php │ │ │ │ ├── login.html.twig │ │ │ │ └── login.js │ │ ├── _admin.layout.html.twig │ │ ├── _flash_messages.html.twig │ │ ├── admin.js │ │ ├── admin.scss │ │ └── bootstrap-tagsinput.scss │ ├── Exception │ │ ├── ExceptionController.php │ │ ├── error.html.twig │ │ ├── error403.html.twig │ │ ├── error404.html.twig │ │ └── error500.html.twig │ ├── Port │ │ ├── FlashMessage │ │ │ └── FlashMessageServiceInterface.php │ │ ├── Form │ │ │ ├── FormFactoryInterface.php │ │ │ ├── FormInterface.php │ │ │ ├── fields.html.twig │ │ │ └── layout.html.twig │ │ ├── Paginator │ │ │ ├── PaginatorFactoryInterface.php │ │ │ └── PaginatorInterface.php │ │ └── Response │ │ │ └── ResponseFactoryInterface.php │ ├── _base.layout.html.twig │ ├── app.js │ ├── app.scss │ └── highlight.js │ └── Infrastructure │ ├── FlashMessage │ └── Symfony │ │ └── FlashMessageService.php │ ├── Form │ └── Symfony │ │ ├── Form.php │ │ ├── Form │ │ ├── CommentForm.php │ │ ├── CreatePostForm.php │ │ └── EditPostForm.php │ │ ├── FormFactory.php │ │ └── Type │ │ ├── DateTimePickerType.php │ │ └── TagsInputType │ │ ├── TagArrayToStringTransformer.php │ │ └── TagsInputType.php │ ├── Paginator │ └── Pagerfanta │ │ ├── PagerfantaInterface.php │ │ ├── PagerfantaPaginator.php │ │ └── PagerfantaPaginatorFactory.php │ ├── Response │ └── ZendDiactoros │ │ └── ResponseFactory.php │ └── Router │ └── Symfony │ └── EventSubscriber │ └── RedirectToPreferredLocaleSubscriber.php ├── symfony.lock ├── tests ├── Fixture │ ├── Doctrine │ │ ├── KeyValueStorageFixtures.php │ │ ├── PostFixtures.php │ │ ├── TagFixtures.php │ │ └── UserFixtures.php │ └── FixturesTrait.php ├── Framework │ ├── AbstractFunctionalTest.php │ ├── AbstractIntegrationTest.php │ ├── AbstractUnitTest.php │ ├── Acceptance │ │ ├── AcceptanceTester.php │ │ ├── Helper │ │ │ └── Acceptance.php │ │ └── _generated │ │ │ └── AcceptanceTesterActions.php │ ├── AppTestInterface.php │ ├── AppTestTrait.php │ ├── CompilerPass │ │ └── CreateTestContainer │ │ │ ├── AbstractServiceInTestContainerException.php │ │ │ ├── CreateTestContainerCompilerPass.php │ │ │ ├── DuplicateServiceInTestContainerException.php │ │ │ └── ServiceInTestContainerNotFoundInProductionContainerException.php │ ├── Container │ │ └── ContainerAwareTestTrait.php │ ├── Data │ │ ├── RouteData.php │ │ └── UserData.php │ ├── Database │ │ └── DatabaseAwareTestTrait.php │ ├── Decorator │ │ └── EmailCollectorEmailerDecorator.php │ └── Mock │ │ └── MockTrait.php ├── TestCase.suite.yml └── TestCase │ ├── AdminVisitCest.php │ ├── AnonymousVisitCest.php │ ├── Core │ ├── Component │ │ ├── Blog │ │ │ ├── Application │ │ │ │ ├── Notification │ │ │ │ │ └── NewComment │ │ │ │ │ │ ├── Email │ │ │ │ │ │ ├── NewCommentEmailGeneratorIntegrationTest.php │ │ │ │ │ │ ├── NewCommentEmailHtmlTemplateIntegrationTest.php │ │ │ │ │ │ ├── NewCommentEmailTextTemplateIntegrationTest.php │ │ │ │ │ │ └── NewCommentEmailVoterUnitTest.php │ │ │ │ │ │ ├── Push │ │ │ │ │ │ ├── NewCommentPushGeneratorUnitTest.php │ │ │ │ │ │ └── NewCommentPushVoterUnitTest.php │ │ │ │ │ │ └── Sms │ │ │ │ │ │ ├── NewCommentSmsGeneratorUnitTest.php │ │ │ │ │ │ └── NewCommentSmsVoterUnitTest.php │ │ │ │ ├── Query │ │ │ │ │ └── DQL │ │ │ │ │ │ ├── CommentListQueryIntegrationTest.php │ │ │ │ │ │ ├── FindHighestPostSlugSuffixQueryIntegrationTest.php │ │ │ │ │ │ ├── FindLatestPostsQueryIntegrationTest.php │ │ │ │ │ │ ├── FindPostsBySearchRequestQueryIntegrationTest.php │ │ │ │ │ │ ├── PostQueryIntegrationTest.php │ │ │ │ │ │ ├── PostSlugExistsQueryIntegrationTest.php │ │ │ │ │ │ └── TagListQueryIntegrationTest.php │ │ │ │ ├── Repository │ │ │ │ │ └── DQL │ │ │ │ │ │ └── PostRepositoryIntegrationTest.php │ │ │ │ └── Service │ │ │ │ │ └── PostServiceUnitTest.php │ │ │ └── Domain │ │ │ │ └── Post │ │ │ │ └── PostUnitTest.php │ │ └── User │ │ │ └── Application │ │ │ ├── Repository │ │ │ └── DQL │ │ │ │ └── UserRepositoryIntegrationTest.php │ │ │ └── Validation │ │ │ └── UserValidationServiceUnitTest.php │ └── Port │ │ ├── Notification │ │ └── Client │ │ │ └── Email │ │ │ ├── ClassWithToStringMethod.php │ │ │ ├── EmailAddressUnitTest.php │ │ │ ├── EmailAttachmentUnitTest.php │ │ │ ├── EmailHeaderUnitTest.php │ │ │ ├── EmailPartUnitTest.php │ │ │ ├── EmailUnitTest.php │ │ │ └── MimeTypeUnitTest.php │ │ ├── Persistence │ │ ├── DummyDto.php │ │ ├── DummyNonCallableQueryService.php │ │ ├── DummyQueryA.php │ │ ├── DummyQueryB.php │ │ ├── DummyQueryC.php │ │ ├── DummyQueryService.php │ │ ├── QueryServiceRouterUnitTest.php │ │ └── ResultCollectionUnitTest.php │ │ └── TemplateEngine │ │ └── AllTemplatesCalledExistIntegrationTest.php │ ├── Infrastructure │ ├── EventDispatcher │ │ ├── DummyEvent.php │ │ ├── DummyListener.php │ │ ├── DummyTwoEvent.php │ │ ├── DummyTwoListener.php │ │ ├── OneDummyListener.php │ │ ├── SyncEventDispatcherCompilerPassUnitTest.php │ │ ├── SyncEventDispatcherUnitTest.php │ │ └── TwoDummyListener.php │ ├── Lock │ │ └── Symfony │ │ │ └── LockManagerIntegrationTest.php │ ├── Notification │ │ ├── Client │ │ │ ├── Email │ │ │ │ └── SwiftMailer │ │ │ │ │ ├── Mapper │ │ │ │ │ ├── MandrillSwiftEmailMapperUnitTest.php │ │ │ │ │ └── SwiftEmailMapperUnitTest.php │ │ │ │ │ └── SwiftMailerUnitTest.php │ │ │ ├── Push │ │ │ │ └── OneSignal │ │ │ │ │ └── OneSignalClientUnitTest.php │ │ │ └── Sms │ │ │ │ ├── MessageBird │ │ │ │ └── MessageBirdClientUnitTest.php │ │ │ │ └── Twilio │ │ │ │ └── TwilioClientUnitTest.php │ │ ├── NotificationServiceUnitTest.php │ │ ├── Settings │ │ │ └── PushNotificationSettingsServiceUnitTest.php │ │ └── Strategy │ │ │ ├── AbstractNotificationStrategyUnitTest.php │ │ │ ├── DummyGenerator.php │ │ │ ├── DummyNotification.php │ │ │ ├── DummyNotificationStrategy.php │ │ │ ├── DummyVoter.php │ │ │ ├── Email │ │ │ ├── DummyEmailGenerator.php │ │ │ └── EmailNotificationStrategyUnitTest.php │ │ │ ├── Push │ │ │ ├── DummyPushGenerator.php │ │ │ └── PushNotificationStrategyUnitTest.php │ │ │ └── Sms │ │ │ ├── DummySmsGenerator.php │ │ │ └── SmsNotificationStrategyUnitTest.php │ ├── Persistence │ │ ├── Doctrine │ │ │ ├── DQLPersistenceServiceUnitTest.php │ │ │ ├── DQLQueryBuilderUnitTest.php │ │ │ ├── DQLQueryUnitTest.php │ │ │ ├── DummyEntity.php │ │ │ └── KeyValueStorageIntegrationTest.php │ │ ├── RequestTransactionSubscriberUnitTest.php │ │ └── Session │ │ │ └── KeyValueStorageIntegrationTest.php │ ├── Router │ │ └── Symfony │ │ │ └── UrlGeneratorServiceUnitTest.php │ └── TemplateEngine │ │ └── Twig │ │ ├── TemplateEngineIntegrationTest.php │ │ ├── Test1TemplateViewModel.php │ │ ├── Test2TemplateViewModel.php │ │ ├── test1.html.twig │ │ └── test2.html.twig │ ├── Presentation │ ├── Console │ │ └── Component │ │ │ └── User │ │ │ └── AddUserCommandIntegrationTest.php │ └── Web │ │ ├── Core │ │ └── Component │ │ │ ├── BackslashRedirectControllerFunctionalTest.php │ │ │ ├── Blog │ │ │ ├── Admin │ │ │ │ ├── Post │ │ │ │ │ └── PostControllerFunctionalTest.php │ │ │ │ └── PostList │ │ │ │ │ └── PostListControllerFunctionalTest.php │ │ │ ├── Anonymous │ │ │ │ └── PostList │ │ │ │ │ └── PostListControllerFunctionalTest.php │ │ │ └── User │ │ │ │ └── Comment │ │ │ │ └── CommentControllerFunctionalTest.php │ │ │ ├── DefaultControllerFunctionalTest.php │ │ │ └── Login │ │ │ └── Anonymous │ │ │ └── SecurityControllerFunctionalTest.php │ │ └── Infrastructure │ │ ├── FlashMessage │ │ └── Symfony │ │ │ └── FlashMessageServiceIntegrationTest.php │ │ ├── Form │ │ └── Symfony │ │ │ ├── FormFactoryIntegrationTest.php │ │ │ ├── FormUnitTest.php │ │ │ └── Type │ │ │ └── TagsInputType │ │ │ └── TagArrayToStringTransformerUnitTest.php │ │ └── Response │ │ └── ZendDiactoros │ │ └── ResponseFactoryIntegrationTest.php │ ├── TestFramework │ └── CompilerPass │ │ └── CreateTestContainer │ │ └── CreateTestContainerCompilerPassUnitTest.php │ └── UserVisitCest.php ├── translations ├── .gitignore ├── messages.ca.xlf ├── messages.cs.xlf ├── messages.de.xlf ├── messages.en.xlf ├── messages.es.xlf ├── messages.fr.xlf ├── messages.hr.xlf ├── messages.id.xlf ├── messages.it.xlf ├── messages.ja.xlf ├── messages.nl.xlf ├── messages.pl.xlf ├── messages.pt_BR.xlf ├── messages.ro.xlf ├── messages.ru.xlf ├── messages.sl.xlf ├── messages.uk.xlf ├── messages.zh_CN.xlf ├── validators.ca.xlf ├── validators.cs.xlf ├── validators.de.xlf ├── validators.en.xlf ├── validators.es.xlf ├── validators.fr.xlf ├── validators.hr.xlf ├── validators.id.xlf ├── validators.it.xlf ├── validators.ja.xlf ├── validators.nl.xlf ├── validators.pl.xlf ├── validators.pt_BR.xlf ├── validators.ro.xlf ├── validators.ru.xlf ├── validators.sl.xlf ├── validators.uk.xlf └── validators.zh_CN.xlf ├── var ├── SymfonyRequirements.php ├── log │ └── .gitkeep └── sessions │ └── .gitkeep ├── webpack.config.js └── yarn.lock /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | no-vcs 2 | var 3 | !var/data/blog.sqlite 4 | .env 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.custom.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/Makefile.custom.dist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/app.json -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/bin/console -------------------------------------------------------------------------------- /bin/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/bin/deploy -------------------------------------------------------------------------------- /bin/lib/docker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/bin/lib/docker.php -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/bin/run -------------------------------------------------------------------------------- /bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/bin/stop -------------------------------------------------------------------------------- /bin/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/bin/up.sh -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/compiler_pass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/compiler_pass.php -------------------------------------------------------------------------------- /config/doctrine/blog/post/Post.orm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/doctrine/blog/post/Post.orm.yml -------------------------------------------------------------------------------- /config/doctrine/blog/post/comment/Comment.orm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/doctrine/blog/post/comment/Comment.orm.yml -------------------------------------------------------------------------------- /config/doctrine/blog/post/tag/Tag.orm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/doctrine/blog/post/tag/Tag.orm.yml -------------------------------------------------------------------------------- /config/doctrine/user/User.orm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/doctrine/user/User.orm.yml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/dev/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/dev/routing.yaml -------------------------------------------------------------------------------- /config/packages/dev/security_checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/dev/security_checker.yaml -------------------------------------------------------------------------------- /config/packages/dev/swiftmailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/dev/swiftmailer.yaml -------------------------------------------------------------------------------- /config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/framework_extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/framework_extra.yaml -------------------------------------------------------------------------------- /config/packages/nyholm_psr7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/nyholm_psr7.yaml -------------------------------------------------------------------------------- /config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/prod/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/prod/framework.yaml -------------------------------------------------------------------------------- /config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/swiftmailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/swiftmailer.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/hgraca_doctrine_test_db_regeneration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/test/hgraca_doctrine_test_db_regeneration.yaml -------------------------------------------------------------------------------- /config/packages/test/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/test/security.yaml -------------------------------------------------------------------------------- /config/packages/test/swiftmailer.yaml: -------------------------------------------------------------------------------- 1 | swiftmailer: 2 | disable_delivery: true 3 | -------------------------------------------------------------------------------- /config/packages/test/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/test/twig.yaml -------------------------------------------------------------------------------- /config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/test/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/translation.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/twig_extensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/packages/twig_extensions.yaml -------------------------------------------------------------------------------- /config/parameters/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/parameters/dev.yaml -------------------------------------------------------------------------------- /config/parameters/prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/parameters/prod.yaml -------------------------------------------------------------------------------- /config/parameters/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/parameters/test.yaml -------------------------------------------------------------------------------- /config/routes/dev/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/dev/index.yaml -------------------------------------------------------------------------------- /config/routes/dev/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/dev/twig.yaml -------------------------------------------------------------------------------- /config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/routes/prod/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/prod/index.yaml -------------------------------------------------------------------------------- /config/routes/prod/web/blog/admin_posts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/prod/web/blog/admin_posts.yaml -------------------------------------------------------------------------------- /config/routes/prod/web/blog/anonymous_post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/prod/web/blog/anonymous_post.yaml -------------------------------------------------------------------------------- /config/routes/prod/web/blog/anonymous_posts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/prod/web/blog/anonymous_posts.yaml -------------------------------------------------------------------------------- /config/routes/prod/web/blog/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/prod/web/blog/index.yaml -------------------------------------------------------------------------------- /config/routes/prod/web/blog/user_post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/prod/web/blog/user_post.yaml -------------------------------------------------------------------------------- /config/routes/prod/web/homepage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/prod/web/homepage.yaml -------------------------------------------------------------------------------- /config/routes/prod/web/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/prod/web/index.yaml -------------------------------------------------------------------------------- /config/routes/prod/web/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/routes/prod/web/login.yaml -------------------------------------------------------------------------------- /config/services/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/dev.yaml -------------------------------------------------------------------------------- /config/services/prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/prod.yaml -------------------------------------------------------------------------------- /config/services/prod/core/component/blog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/prod/core/component/blog.yaml -------------------------------------------------------------------------------- /config/services/prod/core/port/notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/prod/core/port/notification.yaml -------------------------------------------------------------------------------- /config/services/prod/core/port/persistence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/prod/core/port/persistence.yaml -------------------------------------------------------------------------------- /config/services/prod/core/port/validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/prod/core/port/validation.yaml -------------------------------------------------------------------------------- /config/services/prod/infrastructure/notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/prod/infrastructure/notification.yaml -------------------------------------------------------------------------------- /config/services/prod/presentation/web/core/controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/prod/presentation/web/core/controllers.yaml -------------------------------------------------------------------------------- /config/services/prod/presentation/web/core/port/exception.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/prod/presentation/web/core/port/exception.yaml -------------------------------------------------------------------------------- /config/services/prod/presentation/web/core/port/flash_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/prod/presentation/web/core/port/flash_message.yaml -------------------------------------------------------------------------------- /config/services/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/services/test.yaml -------------------------------------------------------------------------------- /config/validator/validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/config/validator/validation.yaml -------------------------------------------------------------------------------- /depfile.classes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/depfile.classes.yml -------------------------------------------------------------------------------- /depfile.components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/depfile.components.yml -------------------------------------------------------------------------------- /depfile.layers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/depfile.layers.yml -------------------------------------------------------------------------------- /docs/IDE/PHPStorm/IDE_PHPSTORM_cli_interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/docs/IDE/PHPStorm/IDE_PHPSTORM_cli_interpreter.png -------------------------------------------------------------------------------- /docs/IDE/PHPStorm/IDE_PHPSTORM_servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/docs/IDE/PHPStorm/IDE_PHPSTORM_servers.png -------------------------------------------------------------------------------- /docs/IDE/PHPStorm/IDE_PHPSTORM_tests_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/docs/IDE/PHPStorm/IDE_PHPSTORM_tests_run.png -------------------------------------------------------------------------------- /docs/images/dependencies/deptrac_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/docs/images/dependencies/deptrac_class.png -------------------------------------------------------------------------------- /docs/images/dependencies/deptrac_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/docs/images/dependencies/deptrac_components.png -------------------------------------------------------------------------------- /docs/images/dependencies/deptrac_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/docs/images/dependencies/deptrac_layers.png -------------------------------------------------------------------------------- /lib/php-extension/src/AbstractStaticClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/AbstractStaticClass.php -------------------------------------------------------------------------------- /lib/php-extension/src/ConstructableFromArrayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/ConstructableFromArrayInterface.php -------------------------------------------------------------------------------- /lib/php-extension/src/ConstructableFromArrayTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/ConstructableFromArrayTrait.php -------------------------------------------------------------------------------- /lib/php-extension/src/DateTime/DateTimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/DateTime/DateTimeException.php -------------------------------------------------------------------------------- /lib/php-extension/src/DateTime/DateTimeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/DateTime/DateTimeGenerator.php -------------------------------------------------------------------------------- /lib/php-extension/src/DateTime/MomentFormatConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/DateTime/MomentFormatConverter.php -------------------------------------------------------------------------------- /lib/php-extension/src/Enum/AbstractEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Enum/AbstractEnum.php -------------------------------------------------------------------------------- /lib/php-extension/src/EqualityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/EqualityInterface.php -------------------------------------------------------------------------------- /lib/php-extension/src/Exception/AcmeExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Exception/AcmeExceptionInterface.php -------------------------------------------------------------------------------- /lib/php-extension/src/Exception/AcmeExceptionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Exception/AcmeExceptionTrait.php -------------------------------------------------------------------------------- /lib/php-extension/src/Exception/AcmeLogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Exception/AcmeLogicException.php -------------------------------------------------------------------------------- /lib/php-extension/src/Exception/AcmeOverloadingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Exception/AcmeOverloadingException.php -------------------------------------------------------------------------------- /lib/php-extension/src/Exception/AcmeRuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Exception/AcmeRuntimeException.php -------------------------------------------------------------------------------- /lib/php-extension/src/Helper/ClassHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Helper/ClassHelper.php -------------------------------------------------------------------------------- /lib/php-extension/src/Helper/ReflectionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Helper/ReflectionHelper.php -------------------------------------------------------------------------------- /lib/php-extension/src/Helper/StringHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Helper/StringHelper.php -------------------------------------------------------------------------------- /lib/php-extension/src/Helper/TypeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Helper/TypeHelper.php -------------------------------------------------------------------------------- /lib/php-extension/src/Identity/AbstractId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Identity/AbstractId.php -------------------------------------------------------------------------------- /lib/php-extension/src/Identity/AbstractIntId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Identity/AbstractIntId.php -------------------------------------------------------------------------------- /lib/php-extension/src/Identity/AbstractStringId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Identity/AbstractStringId.php -------------------------------------------------------------------------------- /lib/php-extension/src/Identity/AbstractUuidId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Identity/AbstractUuidId.php -------------------------------------------------------------------------------- /lib/php-extension/src/Identity/InvalidIdException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Identity/InvalidIdException.php -------------------------------------------------------------------------------- /lib/php-extension/src/ObjectDispatcher/AbstractDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/ObjectDispatcher/AbstractDispatcher.php -------------------------------------------------------------------------------- /lib/php-extension/src/ObjectDispatcher/Destination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/ObjectDispatcher/Destination.php -------------------------------------------------------------------------------- /lib/php-extension/src/ScalarObjectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/ScalarObjectInterface.php -------------------------------------------------------------------------------- /lib/php-extension/src/String/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/String/Markdown.php -------------------------------------------------------------------------------- /lib/php-extension/src/String/Slugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/String/Slugger.php -------------------------------------------------------------------------------- /lib/php-extension/src/Uuid/InvalidUuidStringException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Uuid/InvalidUuidStringException.php -------------------------------------------------------------------------------- /lib/php-extension/src/Uuid/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Uuid/Uuid.php -------------------------------------------------------------------------------- /lib/php-extension/src/Uuid/UuidGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/src/Uuid/UuidGenerator.php -------------------------------------------------------------------------------- /lib/php-extension/tests/AbstractUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/AbstractUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/ConstructableFromArrayTraitUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/ConstructableFromArrayTraitUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/DateTime/DateTimeGeneratorUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/DateTime/DateTimeGeneratorUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/DummyConstructableFromArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/DummyConstructableFromArray.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Enum/AbstractEnumUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Enum/AbstractEnumUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Enum/Test2Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Enum/Test2Enum.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Enum/TestEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Enum/TestEnum.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Exception/AcmeExceptionTraitUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Exception/AcmeExceptionTraitUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Exception/AcmeLogicExceptionUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Exception/AcmeLogicExceptionUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Exception/AcmeRuntimeExceptionUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Exception/AcmeRuntimeExceptionUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Exception/DummyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Exception/DummyException.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Helper/ClassHelperUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Helper/ClassHelperUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Helper/DummyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Helper/DummyClass.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Helper/DummyClassParent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Helper/DummyClassParent.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Helper/ReflectionHelperUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Helper/ReflectionHelperUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Helper/StringHelperUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Helper/StringHelperUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Helper/TypeHelperUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Helper/TypeHelperUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/ObjectDispatcher/AbstractDispatcherUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/ObjectDispatcher/AbstractDispatcherUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/ObjectDispatcher/DummyDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/ObjectDispatcher/DummyDispatcher.php -------------------------------------------------------------------------------- /lib/php-extension/tests/ObjectDispatcher/DummyListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/ObjectDispatcher/DummyListener.php -------------------------------------------------------------------------------- /lib/php-extension/tests/String/SluggerUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/String/SluggerUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Uuid/UuidGeneratorUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Uuid/UuidGeneratorUnitTest.php -------------------------------------------------------------------------------- /lib/php-extension/tests/Uuid/UuidUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/lib/php-extension/tests/Uuid/UuidUnitTest.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/build/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/css/admin.css -------------------------------------------------------------------------------- /public/build/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/css/app.css -------------------------------------------------------------------------------- /public/build/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/build/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/build/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/build/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/build/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/build/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/build/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/build/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/build/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /public/build/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /public/build/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/lato-bold.woff -------------------------------------------------------------------------------- /public/build/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /public/build/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /public/build/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /public/build/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/lato-normal.woff -------------------------------------------------------------------------------- /public/build/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /public/build/images/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/images/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/build/images/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/images/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/build/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/js/admin.js -------------------------------------------------------------------------------- /public/build/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/js/app.js -------------------------------------------------------------------------------- /public/build/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/js/common.js -------------------------------------------------------------------------------- /public/build/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/js/login.js -------------------------------------------------------------------------------- /public/build/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/js/search.js -------------------------------------------------------------------------------- /public/build/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/manifest.js -------------------------------------------------------------------------------- /public/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/build/manifest.json -------------------------------------------------------------------------------- /public/bundles/whiteoctoberpagerfanta: -------------------------------------------------------------------------------- 1 | ../../vendor/white-october/pagerfanta-bundle/Resources/public/ -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Auth/PostVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Auth/PostVoter.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Event/CommentCreatedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Event/CommentCreatedListener.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmail.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmail.html.twig -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmail.txt.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmail.txt.twig -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailGenerator.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailViewModel.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailVoter.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/NewCommentNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/NewCommentNotification.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/Push/NewCommentPushGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/Push/NewCommentPushGenerator.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/Push/NewCommentPushVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/Push/NewCommentPushVoter.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/Sms/NewCommentSmsGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/Sms/NewCommentSmsGenerator.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Notification/NewComment/Sms/NewCommentSmsVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Notification/NewComment/Sms/NewCommentSmsVoter.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/CommentListQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/CommentListQueryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/DQL/CommentListQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/DQL/CommentListQuery.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/DQL/FindHighestPostSlugSuffixQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/DQL/FindHighestPostSlugSuffixQuery.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/DQL/FindLatestPostsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/DQL/FindLatestPostsQuery.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/DQL/FindPostsBySearchRequestQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/DQL/FindPostsBySearchRequestQuery.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/DQL/PostListQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/DQL/PostListQuery.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/DQL/PostQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/DQL/PostQuery.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/DQL/PostSlugExistsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/DQL/PostSlugExistsQuery.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/DQL/TagListQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/DQL/TagListQuery.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/FindHighestPostSlugSuffixQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/FindHighestPostSlugSuffixQueryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/FindLatestPostsQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/FindLatestPostsQueryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/FindPostsBySearchRequestQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/FindPostsBySearchRequestQueryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/LatestPostWithAuthorAndTagsDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/LatestPostWithAuthorAndTagsDto.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/PostDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/PostDto.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/PostListQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/PostListQueryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/PostQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/PostQueryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/PostSlugExistsQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/PostSlugExistsQueryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/PostWithAuthorAndTagsDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/PostWithAuthorAndTagsDto.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/PostWithAuthorDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/PostWithAuthorDto.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/PostsBySearchRequestDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/PostsBySearchRequestDto.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Query/TagListQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Query/TagListQueryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Repository/DQL/PostRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Repository/DQL/PostRepository.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Repository/PostRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Repository/PostRepositoryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Service/CommentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Service/CommentService.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Application/Service/PostService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Application/Service/PostService.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Domain/Post/Comment/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Domain/Post/Comment/Comment.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Domain/Post/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Domain/Post/Post.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Domain/Post/PostId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Domain/Post/PostId.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Domain/Post/SlugIsImmutableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Domain/Post/SlugIsImmutableException.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Domain/Post/Tag/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Domain/Post/Tag/Tag.php -------------------------------------------------------------------------------- /src/Core/Component/Blog/Domain/Post/Tag/TagId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/Blog/Domain/Post/Tag/TagId.php -------------------------------------------------------------------------------- /src/Core/Component/User/Application/Repository/DQL/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/User/Application/Repository/DQL/UserRepository.php -------------------------------------------------------------------------------- /src/Core/Component/User/Application/Repository/UserRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/User/Application/Repository/UserRepositoryInterface.php -------------------------------------------------------------------------------- /src/Core/Component/User/Application/Service/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/User/Application/Service/UserService.php -------------------------------------------------------------------------------- /src/Core/Component/User/Application/Validation/UserValidationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/User/Application/Validation/UserValidationService.php -------------------------------------------------------------------------------- /src/Core/Component/User/Domain/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Component/User/Domain/User/User.php -------------------------------------------------------------------------------- /src/Core/Port/Auth/Authentication/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Auth/Authentication/AuthenticationException.php -------------------------------------------------------------------------------- /src/Core/Port/Auth/Authentication/AuthenticationServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Auth/Authentication/AuthenticationServiceInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Auth/Authentication/NoUserAuthenticatedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Auth/Authentication/NoUserAuthenticatedException.php -------------------------------------------------------------------------------- /src/Core/Port/Auth/Authentication/UserSecretEncoderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Auth/Authentication/UserSecretEncoderInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Auth/Authorization/AccessDeniedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Auth/Authorization/AccessDeniedException.php -------------------------------------------------------------------------------- /src/Core/Port/Auth/Authorization/AuthorizationServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Auth/Authorization/AuthorizationServiceInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Auth/Authorization/ResourceActionVoterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Auth/Authorization/ResourceActionVoterInterface.php -------------------------------------------------------------------------------- /src/Core/Port/EventDispatcher/BufferedEventDispatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/EventDispatcher/BufferedEventDispatcherInterface.php -------------------------------------------------------------------------------- /src/Core/Port/EventDispatcher/EventDispatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/EventDispatcher/EventDispatcherInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Lock/LockAlreadyExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Lock/LockAlreadyExistsException.php -------------------------------------------------------------------------------- /src/Core/Port/Lock/LockManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Lock/LockManagerInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Lock/LockNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Lock/LockNotFoundException.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/Email.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/EmailAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/EmailAddress.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/EmailAttachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/EmailAttachment.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/EmailAttachmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/EmailAttachmentInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/EmailGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/EmailGenerator.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/EmailHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/EmailHeader.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/EmailPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/EmailPart.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/EmailerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/EmailerInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/Exception/EmailAddressNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/Exception/EmailAddressNotFoundException.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/Exception/EmailAttachmentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/Exception/EmailAttachmentException.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/Exception/EmailPartAlreadyProvidedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/Exception/EmailPartAlreadyProvidedException.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Email/MimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Email/MimeType.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Push/Exception/PushNotifierException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Push/Exception/PushNotifierException.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Push/PushNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Push/PushNotification.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Push/PushNotifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Push/PushNotifierInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Push/PushNotifierResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Push/PushNotifierResponse.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Sms/Exception/SmsNotifierException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Sms/Exception/SmsNotifierException.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Sms/Sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Sms/Sms.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Client/Sms/SmsNotifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Client/Sms/SmsNotifierInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/Exception/UndeliverableNotificationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/Exception/UndeliverableNotificationException.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/NotificationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/NotificationInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Notification/NotificationServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Notification/NotificationServiceInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/DQL/DqlQueryBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/DQL/DqlQueryBuilderInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/Exception/CanOnlyHydrateFromArrayException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/Exception/CanOnlyHydrateFromArrayException.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/Exception/EmptyQueryResultException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/Exception/EmptyQueryResultException.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/Exception/NotConstructableFromArrayException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/Exception/NotConstructableFromArrayException.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/Exception/NotUniqueQueryResultException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/Exception/NotUniqueQueryResultException.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/Exception/QueryServiceIsNotCallableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/Exception/QueryServiceIsNotCallableException.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/Exception/UnableToHandleQueryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/Exception/UnableToHandleQueryException.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/Exception/UnknownHydrationModeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/Exception/UnknownHydrationModeException.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/KeyValueStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/KeyValueStorageInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/PersistenceServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/PersistenceServiceInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/QueryBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/QueryBuilderInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/QueryInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/QueryServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/QueryServiceInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/QueryServiceRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/QueryServiceRouter.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/QueryServiceRouterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/QueryServiceRouterInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/ResultCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/ResultCollection.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/ResultCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/ResultCollectionInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/TransactionServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/TransactionServiceInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/UserKeyValueStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/UserKeyValueStorage.php -------------------------------------------------------------------------------- /src/Core/Port/Persistence/UserKeyValueStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Persistence/UserKeyValueStorageInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Router/UrlGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Router/UrlGeneratorInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Router/UrlType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Router/UrlType.php -------------------------------------------------------------------------------- /src/Core/Port/TemplateEngine/EmailTemplateViewModelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/TemplateEngine/EmailTemplateViewModelInterface.php -------------------------------------------------------------------------------- /src/Core/Port/TemplateEngine/NullTemplateViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/TemplateEngine/NullTemplateViewModel.php -------------------------------------------------------------------------------- /src/Core/Port/TemplateEngine/TemplateEngineInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/TemplateEngine/TemplateEngineInterface.php -------------------------------------------------------------------------------- /src/Core/Port/TemplateEngine/TemplateViewModelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/TemplateEngine/TemplateViewModelInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Translation/TranslatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Translation/TranslatorInterface.php -------------------------------------------------------------------------------- /src/Core/Port/Validation/PhoneNumber/PhoneNumberCouldNotBeParsedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Validation/PhoneNumber/PhoneNumberCouldNotBeParsedException.php -------------------------------------------------------------------------------- /src/Core/Port/Validation/PhoneNumber/PhoneNumberException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Validation/PhoneNumber/PhoneNumberException.php -------------------------------------------------------------------------------- /src/Core/Port/Validation/PhoneNumber/PhoneNumberInvalidException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Validation/PhoneNumber/PhoneNumberInvalidException.php -------------------------------------------------------------------------------- /src/Core/Port/Validation/PhoneNumber/PhoneNumberValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/Port/Validation/PhoneNumber/PhoneNumberValidatorInterface.php -------------------------------------------------------------------------------- /src/Core/SharedKernel/Component/Blog/Application/Event/CommentCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Component/Blog/Application/Event/CommentCreatedEvent.php -------------------------------------------------------------------------------- /src/Core/SharedKernel/Component/Blog/Domain/Post/Comment/CommentId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Component/Blog/Domain/Post/Comment/CommentId.php -------------------------------------------------------------------------------- /src/Core/SharedKernel/Component/User/Domain/User/UserId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Component/User/Domain/User/UserId.php -------------------------------------------------------------------------------- /src/Core/SharedKernel/Exception/AppLogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Exception/AppLogicException.php -------------------------------------------------------------------------------- /src/Core/SharedKernel/Exception/AppRuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Exception/AppRuntimeException.php -------------------------------------------------------------------------------- /src/Core/SharedKernel/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Core/SharedKernel/Port/EventDispatcher/EventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Port/EventDispatcher/EventInterface.php -------------------------------------------------------------------------------- /src/Core/SharedKernel/Port/Notification/Client/Email/Template/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Port/Notification/Client/Email/Template/base.html.twig -------------------------------------------------------------------------------- /src/Core/SharedKernel/Port/Notification/Client/Email/Template/base.txt.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Port/Notification/Client/Email/Template/base.txt.twig -------------------------------------------------------------------------------- /src/Core/SharedKernel/Port/Notification/Client/Email/Template/salutation.html.twig: -------------------------------------------------------------------------------- 1 |

{{ 'default.email.salutation'|trans }},

2 | -------------------------------------------------------------------------------- /src/Core/SharedKernel/Port/Notification/Client/Email/Template/salutation.txt.twig: -------------------------------------------------------------------------------- 1 | {{ 'default.email.salutation'|trans }}, 2 | -------------------------------------------------------------------------------- /src/Core/SharedKernel/Port/Notification/Client/Email/Template/signature.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Port/Notification/Client/Email/Template/signature.html.twig -------------------------------------------------------------------------------- /src/Core/SharedKernel/Port/Notification/Client/Email/Template/signature.txt.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Core/SharedKernel/Port/Notification/Client/Email/Template/signature.txt.twig -------------------------------------------------------------------------------- /src/Infrastructure/Auth/Authentication/AuthenticationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Auth/Authentication/AuthenticationService.php -------------------------------------------------------------------------------- /src/Infrastructure/Auth/Authentication/SecurityUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Auth/Authentication/SecurityUser.php -------------------------------------------------------------------------------- /src/Infrastructure/Auth/Authentication/SecurityUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Auth/Authentication/SecurityUserProvider.php -------------------------------------------------------------------------------- /src/Infrastructure/Auth/Authentication/SecurityUserQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Auth/Authentication/SecurityUserQuery.php -------------------------------------------------------------------------------- /src/Infrastructure/Auth/Authentication/UserSecretEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Auth/Authentication/UserSecretEncoder.php -------------------------------------------------------------------------------- /src/Infrastructure/Auth/Authorization/AccessDeniedExceptionSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Auth/Authorization/AccessDeniedExceptionSubscriber.php -------------------------------------------------------------------------------- /src/Infrastructure/Auth/Authorization/AuthorizationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Auth/Authorization/AuthorizationService.php -------------------------------------------------------------------------------- /src/Infrastructure/Auth/Authorization/Voter/PostVoterAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Auth/Authorization/Voter/PostVoterAdapter.php -------------------------------------------------------------------------------- /src/Infrastructure/EventDispatcher/EventFlusherSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/EventDispatcher/EventFlusherSubscriber.php -------------------------------------------------------------------------------- /src/Infrastructure/EventDispatcher/SyncEventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/EventDispatcher/SyncEventDispatcher.php -------------------------------------------------------------------------------- /src/Infrastructure/EventDispatcher/SyncEventDispatcherCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/EventDispatcher/SyncEventDispatcherCompilerPass.php -------------------------------------------------------------------------------- /src/Infrastructure/Framework/Symfony/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Framework/Symfony/Kernel.php -------------------------------------------------------------------------------- /src/Infrastructure/Lock/Symfony/LockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Lock/Symfony/LockManager.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/EmailMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/EmailMapper.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/MandrillSwiftEmailMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/MandrillSwiftEmailMapper.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/SwiftEmailMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/SwiftEmailMapper.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Client/Email/SwiftMailer/SwiftMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Client/Email/SwiftMailer/SwiftMailer.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Client/Push/OneSignal/OneSignalClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Client/Push/OneSignal/OneSignalClient.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Client/Sms/AbstractClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Client/Sms/AbstractClient.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Client/Sms/MessageBird/MessageBirdClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Client/Sms/MessageBird/MessageBirdClient.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Client/Sms/Twilio/TwilioClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Client/Sms/Twilio/TwilioClient.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Config/NotificationConfigCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Config/NotificationConfigCompilerPass.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Config/NotificationConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Config/NotificationConfigException.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/NotificationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/NotificationService.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/NotificationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/NotificationType.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Settings/NotificationSettingsServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Settings/NotificationSettingsServiceInterface.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Settings/PushNotificationSettingsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Settings/PushNotificationSettingsService.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Settings/SmsNotificationSettingsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Settings/SmsNotificationSettingsService.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Strategy/AbstractNotificationStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Strategy/AbstractNotificationStrategy.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Strategy/Email/EmailNotificationStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Strategy/Email/EmailNotificationStrategy.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Strategy/InvalidGeneratorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Strategy/InvalidGeneratorException.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Strategy/InvalidVoterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Strategy/InvalidVoterException.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Strategy/NotificationStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Strategy/NotificationStrategyInterface.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Strategy/Push/PushNotificationStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Strategy/Push/PushNotificationStrategy.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Strategy/Sms/SmsNotificationStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Strategy/Sms/SmsNotificationStrategy.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Strategy/UnprocessableNotificationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/Strategy/UnprocessableNotificationException.php -------------------------------------------------------------------------------- /src/Infrastructure/Notification/StrategyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Notification/StrategyDefinition.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/DqlPersistenceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/DqlPersistenceService.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/DqlQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/DqlQuery.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/DqlQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/DqlQueryBuilder.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/KeyValueStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/KeyValueStorage.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/AbstractBinaryUuidType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/AbstractBinaryUuidType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/AbstractEnumType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/AbstractEnumType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/AbstractIntType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/AbstractIntType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/AbstractStringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/AbstractStringType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/AbstractUuidType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/AbstractUuidType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/BinaryUuidType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/BinaryUuidType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/CommentIdType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/CommentIdType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/PostIdType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/PostIdType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/TagIdType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/TagIdType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/TypeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/TypeTrait.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/UserIdType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/UserIdType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Doctrine/Type/UuidType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Doctrine/Type/UuidType.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/InMemory/KeyValueStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/InMemory/KeyValueStorage.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/RequestTransactionSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/RequestTransactionSubscriber.php -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Session/KeyValueStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Persistence/Session/KeyValueStorage.php -------------------------------------------------------------------------------- /src/Infrastructure/Router/Symfony/UrlGeneratorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Router/Symfony/UrlGeneratorService.php -------------------------------------------------------------------------------- /src/Infrastructure/TemplateEngine/Twig/Extension/Md2HtmlExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/TemplateEngine/Twig/Extension/Md2HtmlExtension.php -------------------------------------------------------------------------------- /src/Infrastructure/TemplateEngine/Twig/Extension/SourceCode/ControllerSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/TemplateEngine/Twig/Extension/SourceCode/ControllerSubscriber.php -------------------------------------------------------------------------------- /src/Infrastructure/TemplateEngine/Twig/Extension/SourceCode/SourceCodeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/TemplateEngine/Twig/Extension/SourceCode/SourceCodeExtension.php -------------------------------------------------------------------------------- /src/Infrastructure/TemplateEngine/Twig/Extension/SourceCode/source_code.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/TemplateEngine/Twig/Extension/SourceCode/source_code.html.twig -------------------------------------------------------------------------------- /src/Infrastructure/TemplateEngine/Twig/TemplateEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/TemplateEngine/Twig/TemplateEngine.php -------------------------------------------------------------------------------- /src/Infrastructure/Translation/Symfony/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Translation/Symfony/Translator.php -------------------------------------------------------------------------------- /src/Infrastructure/Validation/PhoneNumber/LibPhoneNumber/PhoneNumberValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Infrastructure/Validation/PhoneNumber/LibPhoneNumber/PhoneNumberValidator.php -------------------------------------------------------------------------------- /src/Presentation/Console/Component/User/AddUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Console/Component/User/AddUserCommand.php -------------------------------------------------------------------------------- /src/Presentation/Console/Component/User/DeleteUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Console/Component/User/DeleteUserCommand.php -------------------------------------------------------------------------------- /src/Presentation/Console/Component/User/ListUsersCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Console/Component/User/ListUsersCommand.php -------------------------------------------------------------------------------- /src/Presentation/Console/EventSubscriber/CheckRequirementsSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Console/EventSubscriber/CheckRequirementsSubscriber.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/About/Anonymous/about.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/About/Anonymous/about.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/BackslashRedirectController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/BackslashRedirectController.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/Post/EditViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/Post/EditViewModel.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/Post/GetViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/Post/GetViewModel.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/Post/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/Post/PostController.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/Post/_delete_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/Post/_delete_form.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/Post/_delete_post_confirmation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/Post/_delete_post_confirmation.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/Post/_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/Post/_form.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/Post/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/Post/edit.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/Post/get.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/Post/get.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/PostList/GetViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/PostList/GetViewModel.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/PostList/NewViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/PostList/NewViewModel.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/PostList/PostListController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/PostList/PostListController.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/PostList/get.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/PostList/get.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Admin/PostList/new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Admin/PostList/new.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/Post/GetViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/Post/GetViewModel.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/Post/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/Post/PostController.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/Post/get.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/Post/get.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/GetHtmlViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/GetHtmlViewModel.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/GetXmlViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/GetXmlViewModel.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/PostListController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/PostListController.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/get.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/get.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/get.xml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/get.xml.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/jquery.instantSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/jquery.instantSearch.js -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/search.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/search.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/PostList/search.js -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/Anonymous/_rss.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/Anonymous/_rss.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/User/Comment/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/User/Comment/CommentController.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/User/Comment/EditViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/User/Comment/EditViewModel.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/User/Comment/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/User/Comment/edit.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/User/Comment/edit_error.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/User/Comment/edit_error.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Blog/_post_tags.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Blog/_post_tags.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Homepage/Anonymous/homepage.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Homepage/Anonymous/homepage.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Login/Anonymous/LoginViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Login/Anonymous/LoginViewModel.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Login/Anonymous/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Login/Anonymous/SecurityController.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Login/Anonymous/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Login/Anonymous/login.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/Login/Anonymous/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/Login/Anonymous/login.js -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/_admin.layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/_admin.layout.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/_flash_messages.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/_flash_messages.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/admin.js -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/admin.scss -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Component/bootstrap-tagsinput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Component/bootstrap-tagsinput.scss -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Exception/ExceptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Exception/ExceptionController.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Exception/error.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Exception/error.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Exception/error403.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Exception/error403.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Exception/error404.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Exception/error404.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Exception/error500.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Exception/error500.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Port/FlashMessage/FlashMessageServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Port/FlashMessage/FlashMessageServiceInterface.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Port/Form/FormFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Port/Form/FormFactoryInterface.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Port/Form/FormInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Port/Form/FormInterface.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Port/Form/fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Port/Form/fields.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Port/Form/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Port/Form/layout.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Port/Paginator/PaginatorFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Port/Paginator/PaginatorFactoryInterface.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Port/Paginator/PaginatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Port/Paginator/PaginatorInterface.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/Port/Response/ResponseFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/Port/Response/ResponseFactoryInterface.php -------------------------------------------------------------------------------- /src/Presentation/Web/Core/_base.layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/_base.layout.html.twig -------------------------------------------------------------------------------- /src/Presentation/Web/Core/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/app.js -------------------------------------------------------------------------------- /src/Presentation/Web/Core/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/app.scss -------------------------------------------------------------------------------- /src/Presentation/Web/Core/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Core/highlight.js -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/FlashMessage/Symfony/FlashMessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/FlashMessage/Symfony/FlashMessageService.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Form/Symfony/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Form/Symfony/Form.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Form/Symfony/Form/CommentForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Form/Symfony/Form/CommentForm.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Form/Symfony/Form/CreatePostForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Form/Symfony/Form/CreatePostForm.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Form/Symfony/Form/EditPostForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Form/Symfony/Form/EditPostForm.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Form/Symfony/FormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Form/Symfony/FormFactory.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Form/Symfony/Type/DateTimePickerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Form/Symfony/Type/DateTimePickerType.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Form/Symfony/Type/TagsInputType/TagArrayToStringTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Form/Symfony/Type/TagsInputType/TagArrayToStringTransformer.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Form/Symfony/Type/TagsInputType/TagsInputType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Form/Symfony/Type/TagsInputType/TagsInputType.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Paginator/Pagerfanta/PagerfantaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Paginator/Pagerfanta/PagerfantaInterface.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Paginator/Pagerfanta/PagerfantaPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Paginator/Pagerfanta/PagerfantaPaginator.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Paginator/Pagerfanta/PagerfantaPaginatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Paginator/Pagerfanta/PagerfantaPaginatorFactory.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Response/ZendDiactoros/ResponseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Response/ZendDiactoros/ResponseFactory.php -------------------------------------------------------------------------------- /src/Presentation/Web/Infrastructure/Router/Symfony/EventSubscriber/RedirectToPreferredLocaleSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/src/Presentation/Web/Infrastructure/Router/Symfony/EventSubscriber/RedirectToPreferredLocaleSubscriber.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/symfony.lock -------------------------------------------------------------------------------- /tests/Fixture/Doctrine/KeyValueStorageFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Fixture/Doctrine/KeyValueStorageFixtures.php -------------------------------------------------------------------------------- /tests/Fixture/Doctrine/PostFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Fixture/Doctrine/PostFixtures.php -------------------------------------------------------------------------------- /tests/Fixture/Doctrine/TagFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Fixture/Doctrine/TagFixtures.php -------------------------------------------------------------------------------- /tests/Fixture/Doctrine/UserFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Fixture/Doctrine/UserFixtures.php -------------------------------------------------------------------------------- /tests/Fixture/FixturesTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Fixture/FixturesTrait.php -------------------------------------------------------------------------------- /tests/Framework/AbstractFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/AbstractFunctionalTest.php -------------------------------------------------------------------------------- /tests/Framework/AbstractIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/AbstractIntegrationTest.php -------------------------------------------------------------------------------- /tests/Framework/AbstractUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/AbstractUnitTest.php -------------------------------------------------------------------------------- /tests/Framework/Acceptance/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/Acceptance/AcceptanceTester.php -------------------------------------------------------------------------------- /tests/Framework/Acceptance/Helper/Acceptance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/Acceptance/Helper/Acceptance.php -------------------------------------------------------------------------------- /tests/Framework/Acceptance/_generated/AcceptanceTesterActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/Acceptance/_generated/AcceptanceTesterActions.php -------------------------------------------------------------------------------- /tests/Framework/AppTestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/AppTestInterface.php -------------------------------------------------------------------------------- /tests/Framework/AppTestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/AppTestTrait.php -------------------------------------------------------------------------------- /tests/Framework/CompilerPass/CreateTestContainer/AbstractServiceInTestContainerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/CompilerPass/CreateTestContainer/AbstractServiceInTestContainerException.php -------------------------------------------------------------------------------- /tests/Framework/CompilerPass/CreateTestContainer/CreateTestContainerCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/CompilerPass/CreateTestContainer/CreateTestContainerCompilerPass.php -------------------------------------------------------------------------------- /tests/Framework/CompilerPass/CreateTestContainer/DuplicateServiceInTestContainerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/CompilerPass/CreateTestContainer/DuplicateServiceInTestContainerException.php -------------------------------------------------------------------------------- /tests/Framework/CompilerPass/CreateTestContainer/ServiceInTestContainerNotFoundInProductionContainerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/CompilerPass/CreateTestContainer/ServiceInTestContainerNotFoundInProductionContainerException.php -------------------------------------------------------------------------------- /tests/Framework/Container/ContainerAwareTestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/Container/ContainerAwareTestTrait.php -------------------------------------------------------------------------------- /tests/Framework/Data/RouteData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/Data/RouteData.php -------------------------------------------------------------------------------- /tests/Framework/Data/UserData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/Data/UserData.php -------------------------------------------------------------------------------- /tests/Framework/Database/DatabaseAwareTestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/Database/DatabaseAwareTestTrait.php -------------------------------------------------------------------------------- /tests/Framework/Decorator/EmailCollectorEmailerDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/Decorator/EmailCollectorEmailerDecorator.php -------------------------------------------------------------------------------- /tests/Framework/Mock/MockTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/Framework/Mock/MockTrait.php -------------------------------------------------------------------------------- /tests/TestCase.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase.suite.yml -------------------------------------------------------------------------------- /tests/TestCase/AdminVisitCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/AdminVisitCest.php -------------------------------------------------------------------------------- /tests/TestCase/AnonymousVisitCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/AnonymousVisitCest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailGeneratorIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailGeneratorIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailHtmlTemplateIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailHtmlTemplateIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailTextTemplateIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailTextTemplateIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailVoterUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Email/NewCommentEmailVoterUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Push/NewCommentPushGeneratorUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Push/NewCommentPushGeneratorUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Push/NewCommentPushVoterUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Push/NewCommentPushVoterUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Sms/NewCommentSmsGeneratorUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Sms/NewCommentSmsGeneratorUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Sms/NewCommentSmsVoterUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Notification/NewComment/Sms/NewCommentSmsVoterUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Query/DQL/CommentListQueryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Query/DQL/CommentListQueryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Query/DQL/FindHighestPostSlugSuffixQueryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Query/DQL/FindHighestPostSlugSuffixQueryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Query/DQL/FindLatestPostsQueryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Query/DQL/FindLatestPostsQueryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Query/DQL/FindPostsBySearchRequestQueryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Query/DQL/FindPostsBySearchRequestQueryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Query/DQL/PostQueryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Query/DQL/PostQueryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Query/DQL/PostSlugExistsQueryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Query/DQL/PostSlugExistsQueryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Query/DQL/TagListQueryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Query/DQL/TagListQueryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Repository/DQL/PostRepositoryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Repository/DQL/PostRepositoryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Application/Service/PostServiceUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Application/Service/PostServiceUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/Blog/Domain/Post/PostUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/Blog/Domain/Post/PostUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/User/Application/Repository/DQL/UserRepositoryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/User/Application/Repository/DQL/UserRepositoryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Component/User/Application/Validation/UserValidationServiceUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Component/User/Application/Validation/UserValidationServiceUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Notification/Client/Email/ClassWithToStringMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Notification/Client/Email/ClassWithToStringMethod.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Notification/Client/Email/EmailAddressUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Notification/Client/Email/EmailAddressUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Notification/Client/Email/EmailAttachmentUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Notification/Client/Email/EmailAttachmentUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Notification/Client/Email/EmailHeaderUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Notification/Client/Email/EmailHeaderUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Notification/Client/Email/EmailPartUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Notification/Client/Email/EmailPartUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Notification/Client/Email/EmailUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Notification/Client/Email/EmailUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Notification/Client/Email/MimeTypeUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Notification/Client/Email/MimeTypeUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Persistence/DummyDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Persistence/DummyDto.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Persistence/DummyNonCallableQueryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Persistence/DummyNonCallableQueryService.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Persistence/DummyQueryA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Persistence/DummyQueryA.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Persistence/DummyQueryB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Persistence/DummyQueryB.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Persistence/DummyQueryC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Persistence/DummyQueryC.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Persistence/DummyQueryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Persistence/DummyQueryService.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Persistence/QueryServiceRouterUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Persistence/QueryServiceRouterUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/Persistence/ResultCollectionUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/Persistence/ResultCollectionUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Core/Port/TemplateEngine/AllTemplatesCalledExistIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Core/Port/TemplateEngine/AllTemplatesCalledExistIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/EventDispatcher/DummyEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/EventDispatcher/DummyEvent.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/EventDispatcher/DummyListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/EventDispatcher/DummyListener.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/EventDispatcher/DummyTwoEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/EventDispatcher/DummyTwoEvent.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/EventDispatcher/DummyTwoListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/EventDispatcher/DummyTwoListener.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/EventDispatcher/OneDummyListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/EventDispatcher/OneDummyListener.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/EventDispatcher/SyncEventDispatcherCompilerPassUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/EventDispatcher/SyncEventDispatcherCompilerPassUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/EventDispatcher/SyncEventDispatcherUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/EventDispatcher/SyncEventDispatcherUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/EventDispatcher/TwoDummyListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/EventDispatcher/TwoDummyListener.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Lock/Symfony/LockManagerIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Lock/Symfony/LockManagerIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/MandrillSwiftEmailMapperUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/MandrillSwiftEmailMapperUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/SwiftEmailMapperUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Client/Email/SwiftMailer/Mapper/SwiftEmailMapperUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Client/Email/SwiftMailer/SwiftMailerUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Client/Email/SwiftMailer/SwiftMailerUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Client/Push/OneSignal/OneSignalClientUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Client/Push/OneSignal/OneSignalClientUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Client/Sms/MessageBird/MessageBirdClientUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Client/Sms/MessageBird/MessageBirdClientUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Client/Sms/Twilio/TwilioClientUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Client/Sms/Twilio/TwilioClientUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/NotificationServiceUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/NotificationServiceUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Settings/PushNotificationSettingsServiceUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Settings/PushNotificationSettingsServiceUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/AbstractNotificationStrategyUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/AbstractNotificationStrategyUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/DummyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/DummyGenerator.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/DummyNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/DummyNotification.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/DummyNotificationStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/DummyNotificationStrategy.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/DummyVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/DummyVoter.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/Email/DummyEmailGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/Email/DummyEmailGenerator.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/Email/EmailNotificationStrategyUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/Email/EmailNotificationStrategyUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/Push/DummyPushGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/Push/DummyPushGenerator.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/Push/PushNotificationStrategyUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/Push/PushNotificationStrategyUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/Sms/DummySmsGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/Sms/DummySmsGenerator.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Notification/Strategy/Sms/SmsNotificationStrategyUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Notification/Strategy/Sms/SmsNotificationStrategyUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Persistence/Doctrine/DQLPersistenceServiceUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Persistence/Doctrine/DQLPersistenceServiceUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Persistence/Doctrine/DQLQueryBuilderUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Persistence/Doctrine/DQLQueryBuilderUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Persistence/Doctrine/DQLQueryUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Persistence/Doctrine/DQLQueryUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Persistence/Doctrine/DummyEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Persistence/Doctrine/DummyEntity.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Persistence/Doctrine/KeyValueStorageIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Persistence/Doctrine/KeyValueStorageIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Persistence/RequestTransactionSubscriberUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Persistence/RequestTransactionSubscriberUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Persistence/Session/KeyValueStorageIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Persistence/Session/KeyValueStorageIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/Router/Symfony/UrlGeneratorServiceUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/Router/Symfony/UrlGeneratorServiceUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/TemplateEngine/Twig/TemplateEngineIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/TemplateEngine/Twig/TemplateEngineIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/TemplateEngine/Twig/Test1TemplateViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/TemplateEngine/Twig/Test1TemplateViewModel.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/TemplateEngine/Twig/Test2TemplateViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/TemplateEngine/Twig/Test2TemplateViewModel.php -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/TemplateEngine/Twig/test1.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/TemplateEngine/Twig/test1.html.twig -------------------------------------------------------------------------------- /tests/TestCase/Infrastructure/TemplateEngine/Twig/test2.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Infrastructure/TemplateEngine/Twig/test2.html.twig -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Console/Component/User/AddUserCommandIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Console/Component/User/AddUserCommandIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Core/Component/BackslashRedirectControllerFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Core/Component/BackslashRedirectControllerFunctionalTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Core/Component/Blog/Admin/Post/PostControllerFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Core/Component/Blog/Admin/Post/PostControllerFunctionalTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Core/Component/Blog/Admin/PostList/PostListControllerFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Core/Component/Blog/Admin/PostList/PostListControllerFunctionalTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Core/Component/Blog/Anonymous/PostList/PostListControllerFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Core/Component/Blog/Anonymous/PostList/PostListControllerFunctionalTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Core/Component/Blog/User/Comment/CommentControllerFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Core/Component/Blog/User/Comment/CommentControllerFunctionalTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Core/Component/DefaultControllerFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Core/Component/DefaultControllerFunctionalTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Core/Component/Login/Anonymous/SecurityControllerFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Core/Component/Login/Anonymous/SecurityControllerFunctionalTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Infrastructure/FlashMessage/Symfony/FlashMessageServiceIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Infrastructure/FlashMessage/Symfony/FlashMessageServiceIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Infrastructure/Form/Symfony/FormFactoryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Infrastructure/Form/Symfony/FormFactoryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Infrastructure/Form/Symfony/FormUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Infrastructure/Form/Symfony/FormUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Infrastructure/Form/Symfony/Type/TagsInputType/TagArrayToStringTransformerUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Infrastructure/Form/Symfony/Type/TagsInputType/TagArrayToStringTransformerUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Presentation/Web/Infrastructure/Response/ZendDiactoros/ResponseFactoryIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/Presentation/Web/Infrastructure/Response/ZendDiactoros/ResponseFactoryIntegrationTest.php -------------------------------------------------------------------------------- /tests/TestCase/TestFramework/CompilerPass/CreateTestContainer/CreateTestContainerCompilerPassUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/TestFramework/CompilerPass/CreateTestContainer/CreateTestContainerCompilerPassUnitTest.php -------------------------------------------------------------------------------- /tests/TestCase/UserVisitCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/tests/TestCase/UserVisitCest.php -------------------------------------------------------------------------------- /translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/messages.ca.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.ca.xlf -------------------------------------------------------------------------------- /translations/messages.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.cs.xlf -------------------------------------------------------------------------------- /translations/messages.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.de.xlf -------------------------------------------------------------------------------- /translations/messages.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.en.xlf -------------------------------------------------------------------------------- /translations/messages.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.es.xlf -------------------------------------------------------------------------------- /translations/messages.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.fr.xlf -------------------------------------------------------------------------------- /translations/messages.hr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.hr.xlf -------------------------------------------------------------------------------- /translations/messages.id.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.id.xlf -------------------------------------------------------------------------------- /translations/messages.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.it.xlf -------------------------------------------------------------------------------- /translations/messages.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.ja.xlf -------------------------------------------------------------------------------- /translations/messages.nl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.nl.xlf -------------------------------------------------------------------------------- /translations/messages.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.pl.xlf -------------------------------------------------------------------------------- /translations/messages.pt_BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.pt_BR.xlf -------------------------------------------------------------------------------- /translations/messages.ro.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.ro.xlf -------------------------------------------------------------------------------- /translations/messages.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.ru.xlf -------------------------------------------------------------------------------- /translations/messages.sl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.sl.xlf -------------------------------------------------------------------------------- /translations/messages.uk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.uk.xlf -------------------------------------------------------------------------------- /translations/messages.zh_CN.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/messages.zh_CN.xlf -------------------------------------------------------------------------------- /translations/validators.ca.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.ca.xlf -------------------------------------------------------------------------------- /translations/validators.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.cs.xlf -------------------------------------------------------------------------------- /translations/validators.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.de.xlf -------------------------------------------------------------------------------- /translations/validators.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.en.xlf -------------------------------------------------------------------------------- /translations/validators.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.es.xlf -------------------------------------------------------------------------------- /translations/validators.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.fr.xlf -------------------------------------------------------------------------------- /translations/validators.hr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.hr.xlf -------------------------------------------------------------------------------- /translations/validators.id.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.id.xlf -------------------------------------------------------------------------------- /translations/validators.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.it.xlf -------------------------------------------------------------------------------- /translations/validators.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.ja.xlf -------------------------------------------------------------------------------- /translations/validators.nl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.nl.xlf -------------------------------------------------------------------------------- /translations/validators.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.pl.xlf -------------------------------------------------------------------------------- /translations/validators.pt_BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.pt_BR.xlf -------------------------------------------------------------------------------- /translations/validators.ro.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.ro.xlf -------------------------------------------------------------------------------- /translations/validators.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.ru.xlf -------------------------------------------------------------------------------- /translations/validators.sl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.sl.xlf -------------------------------------------------------------------------------- /translations/validators.uk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.uk.xlf -------------------------------------------------------------------------------- /translations/validators.zh_CN.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/translations/validators.zh_CN.xlf -------------------------------------------------------------------------------- /var/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/var/SymfonyRequirements.php -------------------------------------------------------------------------------- /var/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/sessions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgraca/explicit-architecture-php/HEAD/yarn.lock --------------------------------------------------------------------------------