├── .gitignore ├── .phpstorm.meta.php ├── README.md ├── composer.json ├── composer.lock ├── container.php ├── data └── .gitignore ├── phpunit.xml.dist ├── public ├── .gitignore └── index.php ├── src ├── Domain │ ├── Aggregate │ │ └── Building.php │ ├── Command │ │ └── RegisterNewBuilding.php │ ├── DomainEvent │ │ └── NewBuildingWasRegistered.php │ └── Repository │ │ └── BuildingRepositoryInterface.php └── Infrastructure │ └── Repository │ └── BuildingRepository.php ├── template ├── building.php └── index.php └── worker └── worker.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/.phpstorm.meta.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/composer.lock -------------------------------------------------------------------------------- /container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/container.php -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | *.json -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/public/index.php -------------------------------------------------------------------------------- /src/Domain/Aggregate/Building.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/src/Domain/Aggregate/Building.php -------------------------------------------------------------------------------- /src/Domain/Command/RegisterNewBuilding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/src/Domain/Command/RegisterNewBuilding.php -------------------------------------------------------------------------------- /src/Domain/DomainEvent/NewBuildingWasRegistered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/src/Domain/DomainEvent/NewBuildingWasRegistered.php -------------------------------------------------------------------------------- /src/Domain/Repository/BuildingRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/src/Domain/Repository/BuildingRepositoryInterface.php -------------------------------------------------------------------------------- /src/Infrastructure/Repository/BuildingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/src/Infrastructure/Repository/BuildingRepository.php -------------------------------------------------------------------------------- /template/building.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/template/building.php -------------------------------------------------------------------------------- /template/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/template/index.php -------------------------------------------------------------------------------- /worker/worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShittySoft/trivago-cqrs-es-workshop-2017/HEAD/worker/worker.php --------------------------------------------------------------------------------