├── .coveralls.yml ├── .env.dist ├── .github └── workflows │ └── ci-cd.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── Makefile ├── README.md ├── apps └── MusicLabel │ └── api │ ├── .env │ ├── .env.dev │ ├── .env.preprod │ ├── .env.test │ ├── .gitignore │ ├── bin │ ├── console │ └── phpunit │ ├── config │ ├── bootstrap.php │ ├── bundles.php │ ├── packages │ │ ├── cache.yaml │ │ ├── deprecations.yaml │ │ ├── dev │ │ │ ├── doctrine.yaml │ │ │ ├── maker.yaml │ │ │ ├── monolog.yaml │ │ │ └── twig.yaml │ │ ├── doctrine.yaml │ │ ├── doctrine_migrations.yaml │ │ ├── doctrine_types.yaml │ │ ├── framework.yaml │ │ ├── messenger.yaml │ │ ├── nelmio_cors.yaml │ │ ├── preprod │ │ │ ├── deprecations.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── monolog.yaml │ │ │ └── routing.yaml │ │ ├── prod │ │ │ ├── doctrine.yaml │ │ │ ├── monolog.yaml │ │ │ └── routing.yaml │ │ ├── routing.yaml │ │ ├── sensio_framework_extra.yaml │ │ ├── snc_redis.yaml │ │ ├── test │ │ │ ├── doctrine.yaml │ │ │ ├── framework.yaml │ │ │ ├── monolog.yaml │ │ │ ├── twig.yaml │ │ │ └── validator.yaml │ │ ├── validator.yaml │ │ └── web_profiler.yaml │ ├── preload.php │ ├── routes.yaml │ ├── routes │ │ ├── annotations.yaml │ │ ├── dev │ │ │ └── framework.yaml │ │ └── web_profiler.yaml │ ├── secrets │ │ ├── dev │ │ │ ├── dev.JWT_CONTENTS.f8a7e6.php │ │ │ ├── dev.JWT_IDENTIFIED_BY.2a4011.php │ │ │ ├── dev.JWT_PASSPHRASE.0269d8.php │ │ │ ├── dev.decrypt.private.php │ │ │ ├── dev.encrypt.public.php │ │ │ └── dev.list.php │ │ ├── preprod │ │ │ ├── preprod.JWT_CONTENTS.f8a7e6.php │ │ │ ├── preprod.JWT_IDENTIFIED_BY.2a4011.php │ │ │ ├── preprod.JWT_PASSPHRASE.0269d8.php │ │ │ ├── preprod.encrypt.public.php │ │ │ └── preprod.list.php │ │ ├── prod │ │ │ ├── prod.JWT_CONTENTS.f8a7e6.php │ │ │ ├── prod.JWT_IDENTIFIED_BY.2a4011.php │ │ │ ├── prod.JWT_PASSPHRASE.0269d8.php │ │ │ ├── prod.encrypt.public.php │ │ │ └── prod.list.php │ │ └── test │ │ │ ├── test.JWT_CONTENTS.f8a7e6.php │ │ │ ├── test.JWT_IDENTIFIED_BY.2a4011.php │ │ │ ├── test.JWT_PASSPHRASE.0269d8.php │ │ │ ├── test.decrypt.private.php │ │ │ ├── test.encrypt.public.php │ │ │ └── test.list.php │ ├── services.yaml │ ├── services_dev.yaml │ ├── services_preprod.yaml │ ├── services_prod.yaml │ └── services_test.yaml │ ├── mappings │ ├── auth │ │ └── user │ │ │ ├── Token.orm.xml │ │ │ └── User.orm.xml │ └── catalog │ │ ├── Album.Album.orm.xml │ │ ├── Album.AlbumArtist.orm.xml │ │ ├── Album.AlbumTrack.orm.xml │ │ ├── Artist.Artist.orm.xml │ │ ├── Artist.ArtistAlbum.orm.xml │ │ ├── Artist.ArtistTrack.orm.xml │ │ ├── Label.Label.orm.xml │ │ ├── Label.LabelAlbum.orm.xml │ │ ├── Label.LabelTrack.orm.xml │ │ └── Track.Track.orm.xml │ ├── migrations │ ├── .gitkeep │ ├── Version20210113060732.php │ └── Version20220925160048.php │ ├── public │ └── index.php │ └── src │ ├── Bus │ ├── BusHandler.php │ ├── Command │ │ ├── Command.php │ │ └── SyncCommand.php │ ├── Event │ │ ├── AsyncEvent.php │ │ ├── Event.php │ │ ├── EventHandler.php │ │ ├── EventPublisher.php │ │ ├── InMemory │ │ │ └── InMemoryEventPublisher.php │ │ ├── RabbitMq │ │ │ └── RabbitMqEventPublisher.php │ │ └── SyncEvent.php │ ├── Query │ │ ├── Query.php │ │ └── SyncQuery.php │ └── SymfonyMessengerHandler.php │ ├── Command │ ├── CreateUserCommand.php │ └── DumpEnvCommand.php │ ├── Controller │ ├── Auth │ │ ├── AuthenticationPostController.php │ │ ├── InputRequest │ │ │ ├── JwtPostInputData.php │ │ │ └── TokenPostInputData.php │ │ └── JwtAuthenticationPostController.php │ ├── Backoffice │ │ ├── AlbumDeleteController.php │ │ ├── AlbumGetController.php │ │ ├── AlbumPatchController.php │ │ ├── AlbumPostController.php │ │ ├── AlbumPutController.php │ │ └── InputRequest │ │ │ ├── AlbumDeleteInputData.php │ │ │ ├── AlbumGetCollectionInputData.php │ │ │ ├── AlbumGetInputData.php │ │ │ ├── AlbumPatchInputData.php │ │ │ ├── AlbumPostCollectionInputData.php │ │ │ ├── AlbumPostInputData.php │ │ │ └── AlbumPutInputData.php │ └── InputRequest │ │ ├── BadRequest.php │ │ ├── BadRequestExceptionListener.php │ │ └── InputDataAbstract.php │ ├── JsonWebToken │ ├── Configuration.php │ ├── Generator.php │ └── Validator.php │ ├── Kernel.php │ ├── Repository │ ├── Auth │ │ ├── DoctrineTokenRepository.php │ │ └── DoctrineUserRepository.php │ ├── Cache │ │ ├── InMemory │ │ │ └── Client.php │ │ └── Redis │ │ │ └── Client.php │ └── Catalog │ │ ├── DoctrineAlbumRepository.php │ │ ├── DoctrineArtistRepository.php │ │ ├── DoctrineLabelRepository.php │ │ └── DoctrineTrackRepository.php │ ├── Subscriber │ ├── AuthenticatorSubscriber.php │ ├── DomainExceptionSubscriber.php │ └── RequestLoggerSubscriber.php │ └── Type │ ├── Auth │ ├── DoctrineTokenExpirationDate.php │ ├── DoctrineTokenValue.php │ ├── DoctrineUserEmail.php │ ├── DoctrineUserId.php │ └── DoctrineUserPassword.php │ ├── Catalog │ ├── DoctrineAlbumId.php │ ├── DoctrineAlbumPrice.php │ ├── DoctrineAlbumReleasedAtDate.php │ ├── DoctrineAlbumTitle.php │ ├── DoctrineArtistId.php │ ├── DoctrineLabelId.php │ ├── DoctrineLabelName.php │ ├── DoctrineTrackId.php │ ├── DoctrineTrackName.php │ └── DoctrineTrackPrice.php │ ├── ConnectionFactoryDecorator.php │ ├── Shared │ ├── DoctrineDateTimeType.php │ ├── DoctrineDecimalType.php │ ├── DoctrineFloatType.php │ ├── DoctrineIntType.php │ ├── DoctrineStringType.php │ ├── DoctrineType.php │ └── DoctrineUuidType.php │ └── ValueObjectType.php ├── behat.yml ├── composer ├── composer.json ├── composer.lock ├── console ├── docker-compose.local-dev.yml ├── docker-compose.local-prod.yml ├── docker-compose.local.yml ├── docker-compose.prod.yml ├── docker ├── elastic │ ├── elasticsearch │ │ ├── Dockerfile │ │ └── config │ │ │ ├── elasticsearch.dev.yml │ │ │ └── elasticsearch.prod.yml │ ├── filebeat │ │ └── filebeat.yml │ ├── kibana │ │ ├── Dockerfile │ │ └── config │ │ │ ├── kibana.dev.yml │ │ │ └── kibana.prod.yml │ └── logstash │ │ ├── Dockerfile │ │ ├── conf.d │ │ ├── application.conf │ │ └── patterns │ │ │ ├── default.conf │ │ │ ├── nginx.conf │ │ │ └── symfony.conf │ │ └── config │ │ ├── logstash.yml │ │ └── pipelines.yml ├── mariadb │ └── etc │ │ └── mysql │ │ └── conf.d │ │ └── my.cnf ├── mysql │ └── etc │ │ └── mysql │ │ └── conf.d │ │ └── my.cnf ├── nginx │ ├── Dockerfile │ └── etc │ │ └── nginx │ │ ├── certs │ │ ├── dev │ │ │ ├── cert.crt │ │ │ ├── privkey.key │ │ │ └── readme.txt │ │ └── prod │ │ │ ├── cert.crt │ │ │ └── readme.txt │ │ ├── conf.d │ │ └── 00-log-settings.conf │ │ └── templates │ │ └── default.conf.template ├── php │ ├── Dockerfile │ ├── etc │ │ └── supervisor │ │ │ └── conf.d │ │ │ ├── messenger-worker.ini │ │ │ └── supervisord.ini │ └── usr │ │ └── local │ │ ├── bin │ │ ├── disable_xdebug.sh │ │ └── enable_xdebug.sh │ │ └── etc │ │ └── php │ │ └── conf.d │ │ ├── symfony.dev.ini │ │ ├── symfony.prod.ini │ │ └── xdebug.ini └── promtail │ ├── .env.dist │ ├── Makefile │ └── config.yaml ├── features └── MusicLabel │ ├── Auth │ ├── JsonWebToken.feature │ └── Token.feature │ ├── Backoffice │ ├── AlbumDelete.feature │ ├── AlbumGet.feature │ ├── AlbumPatch.feature │ ├── AlbumPost.feature │ ├── AlbumPut.feature │ └── AlbumsGet.feature │ └── Management │ └── other.feature ├── php ├── phpcs.xml ├── phpstan.neon ├── phpunit.xml.dist ├── psalm.xml ├── rector.php ├── src ├── Auth │ ├── Application │ │ ├── JsonWebToken │ │ │ ├── Authenticate │ │ │ │ ├── AuthenticateJwTokenCommand.php │ │ │ │ └── JwTokenAuthenticator.php │ │ │ └── Create │ │ │ │ ├── CreateJsonWebTokenCommand.php │ │ │ │ ├── JsonWebTokenCreator.php │ │ │ │ └── JsonWebTokenResponse.php │ │ ├── Token │ │ │ ├── Authenticate │ │ │ │ ├── AuthenticateTokenCommand.php │ │ │ │ └── TokenAuthenticator.php │ │ │ └── Create │ │ │ │ ├── CreateTokenCommand.php │ │ │ │ ├── TokenCreator.php │ │ │ │ └── TokenResponse.php │ │ └── User │ │ │ └── Create │ │ │ ├── CreateUserCommand.php │ │ │ └── UserCreator.php │ └── Domain │ │ └── User │ │ ├── Exception │ │ ├── JsonWebTokenNotFound.php │ │ ├── SourceOfRandomnessNotFound.php │ │ ├── TokenExpired.php │ │ ├── TokenNotFound.php │ │ ├── UserAlreadyExists.php │ │ ├── UserNotFound.php │ │ └── WrongPassword.php │ │ ├── JsonWebToken.php │ │ ├── JsonWebTokenGenerator.php │ │ ├── JsonWebTokenValidator.php │ │ ├── Token.php │ │ ├── TokenRepository.php │ │ ├── User.php │ │ ├── UserRepository.php │ │ └── ValueObject │ │ ├── JsonWebTokenValue.php │ │ ├── TokenExpirationDate.php │ │ ├── TokenValue.php │ │ ├── UserEmail.php │ │ └── UserPassword.php ├── Backoffice │ └── Catalog │ │ ├── Application │ │ ├── Album │ │ │ ├── AddLabelToAlbum │ │ │ │ ├── AddLabelToAlbumCommand.php │ │ │ │ └── LabelToAlbumAdder.php │ │ │ ├── AlbumAssembler.php │ │ │ ├── Create │ │ │ │ ├── AlbumCreator.php │ │ │ │ └── CreateAlbumCommand.php │ │ │ ├── Delete │ │ │ │ ├── AlbumDeleter.php │ │ │ │ └── DeleteAlbumCommand.php │ │ │ ├── Replace │ │ │ │ ├── AlbumReplacer.php │ │ │ │ └── ReplaceAlbumCommand.php │ │ │ ├── Search │ │ │ │ ├── Collection │ │ │ │ │ ├── AlbumsResponse.php │ │ │ │ │ ├── AlbumsSearcher.php │ │ │ │ │ └── SearchAlbumsQuery.php │ │ │ │ └── Single │ │ │ │ │ ├── AlbumResponse.php │ │ │ │ │ ├── AlbumSearcher.php │ │ │ │ │ └── SearchAlbumQuery.php │ │ │ └── Update │ │ │ │ ├── AlbumUpdater.php │ │ │ │ └── UpdateAlbumCommand.php │ │ └── Label │ │ │ ├── AddAlbumToLabel │ │ │ ├── AddAlbumToLabelCommand.php │ │ │ └── AlbumToLabelAdder.php │ │ │ ├── Create │ │ │ ├── CreateLabelCommand.php │ │ │ └── LabelCreator.php │ │ │ └── Delete │ │ │ ├── DeleteLabelCommand.php │ │ │ └── LabelDeleter.php │ │ └── Domain │ │ ├── Album │ │ ├── Album.php │ │ ├── AlbumArtist.php │ │ ├── AlbumRepository.php │ │ ├── AlbumResultSet.php │ │ ├── AlbumTrack.php │ │ ├── CacheInMemory.php │ │ ├── Event │ │ │ └── AlbumCreatedDomainEvent.php │ │ ├── Exception │ │ │ ├── AlbumAlreadyExists.php │ │ │ └── AlbumNotFound.php │ │ ├── Service │ │ │ └── AlbumFinder.php │ │ └── ValueObject │ │ │ ├── AlbumPrice.php │ │ │ ├── AlbumReleasedAtDate.php │ │ │ └── AlbumTitle.php │ │ ├── Artist │ │ ├── Artist.php │ │ ├── ArtistAlbum.php │ │ ├── ArtistRepository.php │ │ ├── ArtistTrack.php │ │ ├── Exceptions │ │ │ └── ArtistAlreadyExists.php │ │ └── ValueObject │ │ │ ├── ArtistName.php │ │ │ └── ArtistSpecialisation.php │ │ ├── Label │ │ ├── Exceptions │ │ │ ├── LabelAlreadyExists.php │ │ │ └── LabelNotFound.php │ │ ├── Label.php │ │ ├── LabelAlbum.php │ │ ├── LabelRepository.php │ │ ├── LabelTrack.php │ │ └── ValueObject │ │ │ └── LabelName.php │ │ ├── Service │ │ ├── AssignAlbumToLabelService.php │ │ └── AssignLabelToAlbumService.php │ │ └── Track │ │ ├── Exceptions │ │ ├── TrackAlreadyExists.php │ │ └── TrackNotFound.php │ │ ├── Track.php │ │ ├── TrackRepository.php │ │ └── ValueObject │ │ ├── TrackName.php │ │ └── TrackPrice.php ├── Management │ └── Application │ │ └── Email │ │ └── Send │ │ ├── EmailOnAlbumCreatedListener.php │ │ └── EmailSender.php └── Shared │ ├── Application │ ├── Criteria.php │ ├── Select.php │ └── Service │ │ ├── ApplicationService.php │ │ ├── Request.php │ │ └── Response.php │ └── Domain │ ├── AggregateRoot.php │ ├── DomainEvent.php │ ├── DomainException.php │ └── Id │ ├── AlbumId.php │ ├── Artist.php │ ├── ArtistId.php │ ├── LabelId.php │ ├── TrackId.php │ └── UserId.php ├── symfony.lock ├── tests ├── Auth │ ├── Application │ │ └── JsonWebToken │ │ │ └── Authenticate │ │ │ └── AuthenticateJwTokenCommandMother.php │ └── Domain │ │ └── User │ │ ├── TokenMother.php │ │ ├── UserMother.php │ │ └── ValueObject │ │ ├── JwTokenValueMother.php │ │ ├── TokenExpirationDateMother.php │ │ ├── TokenValueMother.php │ │ ├── UserEmailMother.php │ │ └── UserPasswordMother.php ├── Backoffice │ └── Catalog │ │ ├── Application │ │ └── Album │ │ │ ├── AlbumAssemblerTest.php │ │ │ ├── Create │ │ │ ├── AlbumCreatorTest.php │ │ │ └── PostAlbumCommandMother.php │ │ │ ├── Delete │ │ │ ├── AlbumDeleterTest.php │ │ │ └── DeleteAlbumCommandMother.php │ │ │ ├── Replace │ │ │ ├── AlbumUpdaterTest.php │ │ │ └── PutAlbumCommandMother.php │ │ │ ├── Search │ │ │ ├── Collection │ │ │ │ ├── AlbumsSearcherTest.php │ │ │ │ ├── GetAlbumsQueryMother.php │ │ │ │ └── SelectMother.php │ │ │ └── Single │ │ │ │ ├── AlbumSearcherTest.php │ │ │ │ └── GetAlbumQueryMother.php │ │ │ └── Update │ │ │ ├── AlbumPatcherTest.php │ │ │ └── PatchAlbumCommandMother.php │ │ ├── Domain │ │ └── Album │ │ │ ├── AlbumCreatedDomainEventMother.php │ │ │ ├── AlbumFieldsMother.php │ │ │ ├── AlbumFinderTest.php │ │ │ ├── AlbumIdMother.php │ │ │ ├── AlbumMother.php │ │ │ ├── AlbumPriceMother.php │ │ │ ├── AlbumReleaseDateMother.php │ │ │ └── AlbumTitleMother.php │ │ └── Infrastructure │ │ └── Persistence │ │ └── Doctrine │ │ └── Repository │ │ └── DoctrineAlbumRepositoryTest.php └── Shared │ ├── Application │ └── CriteriaMother.php │ ├── Domain │ ├── Id │ │ └── UserIdMother.php │ └── Persistence │ │ └── RepositoryCleaner.php │ └── Infrastructure │ ├── Behat │ ├── Auth │ │ ├── TokenJsonContext.php │ │ ├── TokenMinkContext.php │ │ └── TokenRestContext.php │ ├── Catalog │ │ ├── AlbumJsonContext.php │ │ ├── AlbumMinkContext.php │ │ └── AlbumRestContext.php │ ├── Management │ │ └── OtherContext.php │ └── Shared │ │ ├── AbstractJsonContext.php │ │ ├── AbstractMinkContext.php │ │ ├── AbstractRestContext.php │ │ └── DataBaseCleanerContext.php │ ├── Persistence │ ├── MySql │ │ └── MySqlCleaner.php │ └── Sqlite │ │ └── SqliteCleaner.php │ └── PhpUnit │ └── FakerMother.php └── var ├── db └── .gitkeep └── log ├── .gitkeep ├── nginx └── .gitkeep ├── symfony └── MusicLabel │ └── .gitkeep └── xdebug └── xdebug.log /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/README.md -------------------------------------------------------------------------------- /apps/MusicLabel/api/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/.env -------------------------------------------------------------------------------- /apps/MusicLabel/api/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/.env.dev -------------------------------------------------------------------------------- /apps/MusicLabel/api/.env.preprod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/.env.preprod -------------------------------------------------------------------------------- /apps/MusicLabel/api/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/.env.test -------------------------------------------------------------------------------- /apps/MusicLabel/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/.gitignore -------------------------------------------------------------------------------- /apps/MusicLabel/api/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/bin/console -------------------------------------------------------------------------------- /apps/MusicLabel/api/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/bin/phpunit -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/bootstrap.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/bundles.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/cache.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/deprecations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/deprecations.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/dev/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/dev/doctrine.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/dev/maker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/dev/maker.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/dev/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/dev/twig.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/doctrine_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/doctrine_types.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/framework.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/messenger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/messenger.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/nelmio_cors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/nelmio_cors.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/preprod/deprecations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/preprod/deprecations.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/preprod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/preprod/doctrine.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/preprod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/preprod/monolog.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/preprod/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/preprod/routing.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/prod/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/prod/routing.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/routing.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/sensio_framework_extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/sensio_framework_extra.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/snc_redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/snc_redis.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/test/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/test/doctrine.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/test/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/test/twig.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/test/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/test/validator.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/validator.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/packages/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/packages/web_profiler.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/preload.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/routes.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/routes/annotations.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/routes/dev/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/routes/dev/framework.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/routes/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/routes/web_profiler.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/dev/dev.JWT_CONTENTS.f8a7e6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/dev/dev.JWT_CONTENTS.f8a7e6.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/dev/dev.JWT_IDENTIFIED_BY.2a4011.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/dev/dev.JWT_IDENTIFIED_BY.2a4011.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/dev/dev.JWT_PASSPHRASE.0269d8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/dev/dev.JWT_PASSPHRASE.0269d8.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/dev/dev.decrypt.private.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/dev/dev.decrypt.private.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/dev/dev.encrypt.public.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/dev/dev.encrypt.public.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/dev/dev.list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/dev/dev.list.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/preprod/preprod.JWT_CONTENTS.f8a7e6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/preprod/preprod.JWT_CONTENTS.f8a7e6.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/preprod/preprod.JWT_IDENTIFIED_BY.2a4011.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/preprod/preprod.JWT_IDENTIFIED_BY.2a4011.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/preprod/preprod.JWT_PASSPHRASE.0269d8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/preprod/preprod.JWT_PASSPHRASE.0269d8.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/preprod/preprod.encrypt.public.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/preprod/preprod.encrypt.public.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/preprod/preprod.list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/preprod/preprod.list.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/prod/prod.JWT_CONTENTS.f8a7e6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/prod/prod.JWT_CONTENTS.f8a7e6.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/prod/prod.JWT_IDENTIFIED_BY.2a4011.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/prod/prod.JWT_IDENTIFIED_BY.2a4011.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/prod/prod.JWT_PASSPHRASE.0269d8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/prod/prod.JWT_PASSPHRASE.0269d8.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/prod/prod.encrypt.public.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/prod/prod.encrypt.public.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/prod/prod.list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/prod/prod.list.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/test/test.JWT_CONTENTS.f8a7e6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/test/test.JWT_CONTENTS.f8a7e6.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/test/test.JWT_IDENTIFIED_BY.2a4011.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/test/test.JWT_IDENTIFIED_BY.2a4011.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/test/test.JWT_PASSPHRASE.0269d8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/test/test.JWT_PASSPHRASE.0269d8.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/test/test.decrypt.private.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/test/test.decrypt.private.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/test/test.encrypt.public.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/test/test.encrypt.public.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/secrets/test/test.list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/secrets/test/test.list.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/services.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/services_dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/services_dev.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/services_preprod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/services_preprod.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/services_prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/services_prod.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/config/services_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/config/services_test.yaml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/auth/user/Token.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/auth/user/Token.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/auth/user/User.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/auth/user/User.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Album.Album.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Album.Album.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Album.AlbumArtist.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Album.AlbumArtist.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Album.AlbumTrack.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Album.AlbumTrack.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Artist.Artist.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Artist.Artist.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Artist.ArtistAlbum.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Artist.ArtistAlbum.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Artist.ArtistTrack.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Artist.ArtistTrack.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Label.Label.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Label.Label.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Label.LabelAlbum.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Label.LabelAlbum.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Label.LabelTrack.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Label.LabelTrack.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/mappings/catalog/Track.Track.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/mappings/catalog/Track.Track.orm.xml -------------------------------------------------------------------------------- /apps/MusicLabel/api/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/MusicLabel/api/migrations/Version20210113060732.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/migrations/Version20210113060732.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/migrations/Version20220925160048.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/migrations/Version20220925160048.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/public/index.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/BusHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/BusHandler.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Command/Command.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Command/SyncCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Command/SyncCommand.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Event/AsyncEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Event/AsyncEvent.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Event/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Event/Event.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Event/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Event/EventHandler.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Event/EventPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Event/EventPublisher.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Event/InMemory/InMemoryEventPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Event/InMemory/InMemoryEventPublisher.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Event/RabbitMq/RabbitMqEventPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Event/RabbitMq/RabbitMqEventPublisher.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Event/SyncEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Event/SyncEvent.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Query/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Query/Query.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/Query/SyncQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/Query/SyncQuery.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Bus/SymfonyMessengerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Bus/SymfonyMessengerHandler.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Command/CreateUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Command/CreateUserCommand.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Command/DumpEnvCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Command/DumpEnvCommand.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Auth/AuthenticationPostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Auth/AuthenticationPostController.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Auth/InputRequest/JwtPostInputData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Auth/InputRequest/JwtPostInputData.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Auth/InputRequest/TokenPostInputData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Auth/InputRequest/TokenPostInputData.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Auth/JwtAuthenticationPostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Auth/JwtAuthenticationPostController.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/AlbumDeleteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/AlbumDeleteController.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/AlbumGetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/AlbumGetController.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/AlbumPatchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/AlbumPatchController.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/AlbumPostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/AlbumPostController.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/AlbumPutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/AlbumPutController.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumDeleteInputData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumDeleteInputData.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumGetCollectionInputData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumGetCollectionInputData.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumGetInputData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumGetInputData.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumPatchInputData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumPatchInputData.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumPostCollectionInputData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumPostCollectionInputData.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumPostInputData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumPostInputData.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumPutInputData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/Backoffice/InputRequest/AlbumPutInputData.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/InputRequest/BadRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/InputRequest/BadRequest.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/InputRequest/BadRequestExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/InputRequest/BadRequestExceptionListener.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Controller/InputRequest/InputDataAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Controller/InputRequest/InputDataAbstract.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/JsonWebToken/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/JsonWebToken/Configuration.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/JsonWebToken/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/JsonWebToken/Generator.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/JsonWebToken/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/JsonWebToken/Validator.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Kernel.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Repository/Auth/DoctrineTokenRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Repository/Auth/DoctrineTokenRepository.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Repository/Auth/DoctrineUserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Repository/Auth/DoctrineUserRepository.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Repository/Cache/InMemory/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Repository/Cache/InMemory/Client.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Repository/Cache/Redis/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Repository/Cache/Redis/Client.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Repository/Catalog/DoctrineAlbumRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Repository/Catalog/DoctrineAlbumRepository.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Repository/Catalog/DoctrineArtistRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Repository/Catalog/DoctrineArtistRepository.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Repository/Catalog/DoctrineLabelRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Repository/Catalog/DoctrineLabelRepository.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Repository/Catalog/DoctrineTrackRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Repository/Catalog/DoctrineTrackRepository.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Subscriber/AuthenticatorSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Subscriber/AuthenticatorSubscriber.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Subscriber/DomainExceptionSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Subscriber/DomainExceptionSubscriber.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Subscriber/RequestLoggerSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Subscriber/RequestLoggerSubscriber.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Auth/DoctrineTokenExpirationDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Auth/DoctrineTokenExpirationDate.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Auth/DoctrineTokenValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Auth/DoctrineTokenValue.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Auth/DoctrineUserEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Auth/DoctrineUserEmail.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Auth/DoctrineUserId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Auth/DoctrineUserId.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Auth/DoctrineUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Auth/DoctrineUserPassword.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineAlbumId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineAlbumId.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineAlbumPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineAlbumPrice.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineAlbumReleasedAtDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineAlbumReleasedAtDate.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineAlbumTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineAlbumTitle.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineArtistId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineArtistId.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineLabelId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineLabelId.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineLabelName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineLabelName.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineTrackId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineTrackId.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineTrackName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineTrackName.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Catalog/DoctrineTrackPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Catalog/DoctrineTrackPrice.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/ConnectionFactoryDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/ConnectionFactoryDecorator.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Shared/DoctrineDateTimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Shared/DoctrineDateTimeType.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Shared/DoctrineDecimalType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Shared/DoctrineDecimalType.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Shared/DoctrineFloatType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Shared/DoctrineFloatType.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Shared/DoctrineIntType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Shared/DoctrineIntType.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Shared/DoctrineStringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Shared/DoctrineStringType.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Shared/DoctrineType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Shared/DoctrineType.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/Shared/DoctrineUuidType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/Shared/DoctrineUuidType.php -------------------------------------------------------------------------------- /apps/MusicLabel/api/src/Type/ValueObjectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/apps/MusicLabel/api/src/Type/ValueObjectType.php -------------------------------------------------------------------------------- /behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/behat.yml -------------------------------------------------------------------------------- /composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/composer -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/composer.lock -------------------------------------------------------------------------------- /console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/console -------------------------------------------------------------------------------- /docker-compose.local-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker-compose.local-dev.yml -------------------------------------------------------------------------------- /docker-compose.local-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker-compose.local-prod.yml -------------------------------------------------------------------------------- /docker-compose.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker-compose.local.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker/elastic/elasticsearch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/elasticsearch/Dockerfile -------------------------------------------------------------------------------- /docker/elastic/elasticsearch/config/elasticsearch.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/elasticsearch/config/elasticsearch.dev.yml -------------------------------------------------------------------------------- /docker/elastic/elasticsearch/config/elasticsearch.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/elasticsearch/config/elasticsearch.prod.yml -------------------------------------------------------------------------------- /docker/elastic/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/elastic/kibana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/kibana/Dockerfile -------------------------------------------------------------------------------- /docker/elastic/kibana/config/kibana.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/kibana/config/kibana.dev.yml -------------------------------------------------------------------------------- /docker/elastic/kibana/config/kibana.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/kibana/config/kibana.prod.yml -------------------------------------------------------------------------------- /docker/elastic/logstash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/logstash/Dockerfile -------------------------------------------------------------------------------- /docker/elastic/logstash/conf.d/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/logstash/conf.d/application.conf -------------------------------------------------------------------------------- /docker/elastic/logstash/conf.d/patterns/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/logstash/conf.d/patterns/default.conf -------------------------------------------------------------------------------- /docker/elastic/logstash/conf.d/patterns/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/logstash/conf.d/patterns/nginx.conf -------------------------------------------------------------------------------- /docker/elastic/logstash/conf.d/patterns/symfony.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/logstash/conf.d/patterns/symfony.conf -------------------------------------------------------------------------------- /docker/elastic/logstash/config/logstash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/logstash/config/logstash.yml -------------------------------------------------------------------------------- /docker/elastic/logstash/config/pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/elastic/logstash/config/pipelines.yml -------------------------------------------------------------------------------- /docker/mariadb/etc/mysql/conf.d/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/mariadb/etc/mysql/conf.d/my.cnf -------------------------------------------------------------------------------- /docker/mysql/etc/mysql/conf.d/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/mysql/etc/mysql/conf.d/my.cnf -------------------------------------------------------------------------------- /docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/nginx/Dockerfile -------------------------------------------------------------------------------- /docker/nginx/etc/nginx/certs/dev/cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/nginx/etc/nginx/certs/dev/cert.crt -------------------------------------------------------------------------------- /docker/nginx/etc/nginx/certs/dev/privkey.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/nginx/etc/nginx/certs/dev/privkey.key -------------------------------------------------------------------------------- /docker/nginx/etc/nginx/certs/dev/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/nginx/etc/nginx/certs/dev/readme.txt -------------------------------------------------------------------------------- /docker/nginx/etc/nginx/certs/prod/cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/nginx/etc/nginx/certs/prod/cert.crt -------------------------------------------------------------------------------- /docker/nginx/etc/nginx/certs/prod/readme.txt: -------------------------------------------------------------------------------- 1 | Place your production certs in this folder. -------------------------------------------------------------------------------- /docker/nginx/etc/nginx/conf.d/00-log-settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/nginx/etc/nginx/conf.d/00-log-settings.conf -------------------------------------------------------------------------------- /docker/nginx/etc/nginx/templates/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/nginx/etc/nginx/templates/default.conf.template -------------------------------------------------------------------------------- /docker/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/php/Dockerfile -------------------------------------------------------------------------------- /docker/php/etc/supervisor/conf.d/messenger-worker.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/php/etc/supervisor/conf.d/messenger-worker.ini -------------------------------------------------------------------------------- /docker/php/etc/supervisor/conf.d/supervisord.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/php/etc/supervisor/conf.d/supervisord.ini -------------------------------------------------------------------------------- /docker/php/usr/local/bin/disable_xdebug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/php/usr/local/bin/disable_xdebug.sh -------------------------------------------------------------------------------- /docker/php/usr/local/bin/enable_xdebug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/php/usr/local/bin/enable_xdebug.sh -------------------------------------------------------------------------------- /docker/php/usr/local/etc/php/conf.d/symfony.dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/php/usr/local/etc/php/conf.d/symfony.dev.ini -------------------------------------------------------------------------------- /docker/php/usr/local/etc/php/conf.d/symfony.prod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/php/usr/local/etc/php/conf.d/symfony.prod.ini -------------------------------------------------------------------------------- /docker/php/usr/local/etc/php/conf.d/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/php/usr/local/etc/php/conf.d/xdebug.ini -------------------------------------------------------------------------------- /docker/promtail/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/promtail/.env.dist -------------------------------------------------------------------------------- /docker/promtail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/promtail/Makefile -------------------------------------------------------------------------------- /docker/promtail/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/docker/promtail/config.yaml -------------------------------------------------------------------------------- /features/MusicLabel/Auth/JsonWebToken.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/features/MusicLabel/Auth/JsonWebToken.feature -------------------------------------------------------------------------------- /features/MusicLabel/Auth/Token.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/features/MusicLabel/Auth/Token.feature -------------------------------------------------------------------------------- /features/MusicLabel/Backoffice/AlbumDelete.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/features/MusicLabel/Backoffice/AlbumDelete.feature -------------------------------------------------------------------------------- /features/MusicLabel/Backoffice/AlbumGet.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/features/MusicLabel/Backoffice/AlbumGet.feature -------------------------------------------------------------------------------- /features/MusicLabel/Backoffice/AlbumPatch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/features/MusicLabel/Backoffice/AlbumPatch.feature -------------------------------------------------------------------------------- /features/MusicLabel/Backoffice/AlbumPost.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/features/MusicLabel/Backoffice/AlbumPost.feature -------------------------------------------------------------------------------- /features/MusicLabel/Backoffice/AlbumPut.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/features/MusicLabel/Backoffice/AlbumPut.feature -------------------------------------------------------------------------------- /features/MusicLabel/Backoffice/AlbumsGet.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/features/MusicLabel/Backoffice/AlbumsGet.feature -------------------------------------------------------------------------------- /features/MusicLabel/Management/other.feature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/rector.php -------------------------------------------------------------------------------- /src/Auth/Application/JsonWebToken/Authenticate/AuthenticateJwTokenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/JsonWebToken/Authenticate/AuthenticateJwTokenCommand.php -------------------------------------------------------------------------------- /src/Auth/Application/JsonWebToken/Authenticate/JwTokenAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/JsonWebToken/Authenticate/JwTokenAuthenticator.php -------------------------------------------------------------------------------- /src/Auth/Application/JsonWebToken/Create/CreateJsonWebTokenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/JsonWebToken/Create/CreateJsonWebTokenCommand.php -------------------------------------------------------------------------------- /src/Auth/Application/JsonWebToken/Create/JsonWebTokenCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/JsonWebToken/Create/JsonWebTokenCreator.php -------------------------------------------------------------------------------- /src/Auth/Application/JsonWebToken/Create/JsonWebTokenResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/JsonWebToken/Create/JsonWebTokenResponse.php -------------------------------------------------------------------------------- /src/Auth/Application/Token/Authenticate/AuthenticateTokenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/Token/Authenticate/AuthenticateTokenCommand.php -------------------------------------------------------------------------------- /src/Auth/Application/Token/Authenticate/TokenAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/Token/Authenticate/TokenAuthenticator.php -------------------------------------------------------------------------------- /src/Auth/Application/Token/Create/CreateTokenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/Token/Create/CreateTokenCommand.php -------------------------------------------------------------------------------- /src/Auth/Application/Token/Create/TokenCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/Token/Create/TokenCreator.php -------------------------------------------------------------------------------- /src/Auth/Application/Token/Create/TokenResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/Token/Create/TokenResponse.php -------------------------------------------------------------------------------- /src/Auth/Application/User/Create/CreateUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/User/Create/CreateUserCommand.php -------------------------------------------------------------------------------- /src/Auth/Application/User/Create/UserCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Application/User/Create/UserCreator.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/Exception/JsonWebTokenNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/Exception/JsonWebTokenNotFound.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/Exception/SourceOfRandomnessNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/Exception/SourceOfRandomnessNotFound.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/Exception/TokenExpired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/Exception/TokenExpired.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/Exception/TokenNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/Exception/TokenNotFound.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/Exception/UserAlreadyExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/Exception/UserAlreadyExists.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/Exception/UserNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/Exception/UserNotFound.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/Exception/WrongPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/Exception/WrongPassword.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/JsonWebToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/JsonWebToken.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/JsonWebTokenGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/JsonWebTokenGenerator.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/JsonWebTokenValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/JsonWebTokenValidator.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/Token.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/TokenRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/TokenRepository.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/User.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/UserRepository.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/ValueObject/JsonWebTokenValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/ValueObject/JsonWebTokenValue.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/ValueObject/TokenExpirationDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/ValueObject/TokenExpirationDate.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/ValueObject/TokenValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/ValueObject/TokenValue.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/ValueObject/UserEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/ValueObject/UserEmail.php -------------------------------------------------------------------------------- /src/Auth/Domain/User/ValueObject/UserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Auth/Domain/User/ValueObject/UserPassword.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/AddLabelToAlbum/AddLabelToAlbumCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/AddLabelToAlbum/AddLabelToAlbumCommand.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/AddLabelToAlbum/LabelToAlbumAdder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/AddLabelToAlbum/LabelToAlbumAdder.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/AlbumAssembler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/AlbumAssembler.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Create/AlbumCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Create/AlbumCreator.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Create/CreateAlbumCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Create/CreateAlbumCommand.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Delete/AlbumDeleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Delete/AlbumDeleter.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Delete/DeleteAlbumCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Delete/DeleteAlbumCommand.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Replace/AlbumReplacer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Replace/AlbumReplacer.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Replace/ReplaceAlbumCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Replace/ReplaceAlbumCommand.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Search/Collection/AlbumsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Search/Collection/AlbumsResponse.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Search/Collection/AlbumsSearcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Search/Collection/AlbumsSearcher.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Search/Collection/SearchAlbumsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Search/Collection/SearchAlbumsQuery.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Search/Single/AlbumResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Search/Single/AlbumResponse.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Search/Single/AlbumSearcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Search/Single/AlbumSearcher.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Search/Single/SearchAlbumQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Search/Single/SearchAlbumQuery.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Update/AlbumUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Update/AlbumUpdater.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Album/Update/UpdateAlbumCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Album/Update/UpdateAlbumCommand.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Label/AddAlbumToLabel/AddAlbumToLabelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Label/AddAlbumToLabel/AddAlbumToLabelCommand.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Label/AddAlbumToLabel/AlbumToLabelAdder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Label/AddAlbumToLabel/AlbumToLabelAdder.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Label/Create/CreateLabelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Label/Create/CreateLabelCommand.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Label/Create/LabelCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Label/Create/LabelCreator.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Label/Delete/DeleteLabelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Label/Delete/DeleteLabelCommand.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Application/Label/Delete/LabelDeleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Application/Label/Delete/LabelDeleter.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/Album.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/AlbumArtist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/AlbumArtist.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/AlbumRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/AlbumRepository.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/AlbumResultSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/AlbumResultSet.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/AlbumTrack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/AlbumTrack.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/CacheInMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/CacheInMemory.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/Event/AlbumCreatedDomainEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/Event/AlbumCreatedDomainEvent.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/Exception/AlbumAlreadyExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/Exception/AlbumAlreadyExists.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/Exception/AlbumNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/Exception/AlbumNotFound.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/Service/AlbumFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/Service/AlbumFinder.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/ValueObject/AlbumPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/ValueObject/AlbumPrice.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/ValueObject/AlbumReleasedAtDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/ValueObject/AlbumReleasedAtDate.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Album/ValueObject/AlbumTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Album/ValueObject/AlbumTitle.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Artist/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Artist/Artist.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Artist/ArtistAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Artist/ArtistAlbum.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Artist/ArtistRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Artist/ArtistRepository.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Artist/ArtistTrack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Artist/ArtistTrack.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Artist/Exceptions/ArtistAlreadyExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Artist/Exceptions/ArtistAlreadyExists.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Artist/ValueObject/ArtistName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Artist/ValueObject/ArtistName.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Artist/ValueObject/ArtistSpecialisation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Artist/ValueObject/ArtistSpecialisation.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Label/Exceptions/LabelAlreadyExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Label/Exceptions/LabelAlreadyExists.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Label/Exceptions/LabelNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Label/Exceptions/LabelNotFound.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Label/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Label/Label.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Label/LabelAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Label/LabelAlbum.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Label/LabelRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Label/LabelRepository.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Label/LabelTrack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Label/LabelTrack.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Label/ValueObject/LabelName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Label/ValueObject/LabelName.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Service/AssignAlbumToLabelService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Service/AssignAlbumToLabelService.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Service/AssignLabelToAlbumService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Service/AssignLabelToAlbumService.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Track/Exceptions/TrackAlreadyExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Track/Exceptions/TrackAlreadyExists.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Track/Exceptions/TrackNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Track/Exceptions/TrackNotFound.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Track/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Track/Track.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Track/TrackRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Track/TrackRepository.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Track/ValueObject/TrackName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Track/ValueObject/TrackName.php -------------------------------------------------------------------------------- /src/Backoffice/Catalog/Domain/Track/ValueObject/TrackPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Backoffice/Catalog/Domain/Track/ValueObject/TrackPrice.php -------------------------------------------------------------------------------- /src/Management/Application/Email/Send/EmailOnAlbumCreatedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Management/Application/Email/Send/EmailOnAlbumCreatedListener.php -------------------------------------------------------------------------------- /src/Management/Application/Email/Send/EmailSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Management/Application/Email/Send/EmailSender.php -------------------------------------------------------------------------------- /src/Shared/Application/Criteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Application/Criteria.php -------------------------------------------------------------------------------- /src/Shared/Application/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Application/Select.php -------------------------------------------------------------------------------- /src/Shared/Application/Service/ApplicationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Application/Service/ApplicationService.php -------------------------------------------------------------------------------- /src/Shared/Application/Service/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Application/Service/Request.php -------------------------------------------------------------------------------- /src/Shared/Application/Service/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Application/Service/Response.php -------------------------------------------------------------------------------- /src/Shared/Domain/AggregateRoot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Domain/AggregateRoot.php -------------------------------------------------------------------------------- /src/Shared/Domain/DomainEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Domain/DomainEvent.php -------------------------------------------------------------------------------- /src/Shared/Domain/DomainException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Domain/DomainException.php -------------------------------------------------------------------------------- /src/Shared/Domain/Id/AlbumId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Domain/Id/AlbumId.php -------------------------------------------------------------------------------- /src/Shared/Domain/Id/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Domain/Id/Artist.php -------------------------------------------------------------------------------- /src/Shared/Domain/Id/ArtistId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Domain/Id/ArtistId.php -------------------------------------------------------------------------------- /src/Shared/Domain/Id/LabelId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Domain/Id/LabelId.php -------------------------------------------------------------------------------- /src/Shared/Domain/Id/TrackId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Domain/Id/TrackId.php -------------------------------------------------------------------------------- /src/Shared/Domain/Id/UserId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/src/Shared/Domain/Id/UserId.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/symfony.lock -------------------------------------------------------------------------------- /tests/Auth/Application/JsonWebToken/Authenticate/AuthenticateJwTokenCommandMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Auth/Application/JsonWebToken/Authenticate/AuthenticateJwTokenCommandMother.php -------------------------------------------------------------------------------- /tests/Auth/Domain/User/TokenMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Auth/Domain/User/TokenMother.php -------------------------------------------------------------------------------- /tests/Auth/Domain/User/UserMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Auth/Domain/User/UserMother.php -------------------------------------------------------------------------------- /tests/Auth/Domain/User/ValueObject/JwTokenValueMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Auth/Domain/User/ValueObject/JwTokenValueMother.php -------------------------------------------------------------------------------- /tests/Auth/Domain/User/ValueObject/TokenExpirationDateMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Auth/Domain/User/ValueObject/TokenExpirationDateMother.php -------------------------------------------------------------------------------- /tests/Auth/Domain/User/ValueObject/TokenValueMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Auth/Domain/User/ValueObject/TokenValueMother.php -------------------------------------------------------------------------------- /tests/Auth/Domain/User/ValueObject/UserEmailMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Auth/Domain/User/ValueObject/UserEmailMother.php -------------------------------------------------------------------------------- /tests/Auth/Domain/User/ValueObject/UserPasswordMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Auth/Domain/User/ValueObject/UserPasswordMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/AlbumAssemblerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/AlbumAssemblerTest.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Create/AlbumCreatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Create/AlbumCreatorTest.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Create/PostAlbumCommandMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Create/PostAlbumCommandMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Delete/AlbumDeleterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Delete/AlbumDeleterTest.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Delete/DeleteAlbumCommandMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Delete/DeleteAlbumCommandMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Replace/AlbumUpdaterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Replace/AlbumUpdaterTest.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Replace/PutAlbumCommandMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Replace/PutAlbumCommandMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Search/Collection/AlbumsSearcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Search/Collection/AlbumsSearcherTest.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Search/Collection/GetAlbumsQueryMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Search/Collection/GetAlbumsQueryMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Search/Collection/SelectMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Search/Collection/SelectMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Search/Single/AlbumSearcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Search/Single/AlbumSearcherTest.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Search/Single/GetAlbumQueryMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Search/Single/GetAlbumQueryMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Update/AlbumPatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Update/AlbumPatcherTest.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Application/Album/Update/PatchAlbumCommandMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Application/Album/Update/PatchAlbumCommandMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Domain/Album/AlbumCreatedDomainEventMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Domain/Album/AlbumCreatedDomainEventMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Domain/Album/AlbumFieldsMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Domain/Album/AlbumFieldsMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Domain/Album/AlbumFinderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Domain/Album/AlbumFinderTest.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Domain/Album/AlbumIdMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Domain/Album/AlbumIdMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Domain/Album/AlbumMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Domain/Album/AlbumMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Domain/Album/AlbumPriceMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Domain/Album/AlbumPriceMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Domain/Album/AlbumReleaseDateMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Domain/Album/AlbumReleaseDateMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Domain/Album/AlbumTitleMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Domain/Album/AlbumTitleMother.php -------------------------------------------------------------------------------- /tests/Backoffice/Catalog/Infrastructure/Persistence/Doctrine/Repository/DoctrineAlbumRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Backoffice/Catalog/Infrastructure/Persistence/Doctrine/Repository/DoctrineAlbumRepositoryTest.php -------------------------------------------------------------------------------- /tests/Shared/Application/CriteriaMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Application/CriteriaMother.php -------------------------------------------------------------------------------- /tests/Shared/Domain/Id/UserIdMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Domain/Id/UserIdMother.php -------------------------------------------------------------------------------- /tests/Shared/Domain/Persistence/RepositoryCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Domain/Persistence/RepositoryCleaner.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Auth/TokenJsonContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Auth/TokenJsonContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Auth/TokenMinkContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Auth/TokenMinkContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Auth/TokenRestContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Auth/TokenRestContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Catalog/AlbumJsonContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Catalog/AlbumJsonContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Catalog/AlbumMinkContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Catalog/AlbumMinkContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Catalog/AlbumRestContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Catalog/AlbumRestContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Management/OtherContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Management/OtherContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Shared/AbstractJsonContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Shared/AbstractJsonContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Shared/AbstractMinkContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Shared/AbstractMinkContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Shared/AbstractRestContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Shared/AbstractRestContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Behat/Shared/DataBaseCleanerContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Behat/Shared/DataBaseCleanerContext.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Persistence/MySql/MySqlCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Persistence/MySql/MySqlCleaner.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/Persistence/Sqlite/SqliteCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/Persistence/Sqlite/SqliteCleaner.php -------------------------------------------------------------------------------- /tests/Shared/Infrastructure/PhpUnit/FakerMother.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masfernandez/symfony-ddd-hexarch-cqrs/HEAD/tests/Shared/Infrastructure/PhpUnit/FakerMother.php -------------------------------------------------------------------------------- /var/db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/log/nginx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/log/symfony/MusicLabel/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/log/xdebug/xdebug.log: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------