├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── SymfonyRequirements.php ├── autoload.php ├── cache │ └── .gitkeep ├── check.php ├── config │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── parameters.yml.dist │ ├── routing.yml │ ├── routing_dev.yml │ └── security.yml ├── console └── logs │ └── .gitkeep ├── bower.json ├── composer.json ├── composer.lock ├── package.json ├── spec └── Afsy │ └── Blackjack │ └── Domain │ └── Model │ └── GameSpec.php ├── src ├── .htaccess └── Afsy │ ├── App │ ├── Command │ │ ├── DealCardCommand.php │ │ ├── StartGameCommand.php │ │ └── StopDealCardCommand.php │ ├── Exception │ │ └── NotFoundGameViewException.php │ ├── GameEngineService.php │ └── GameViewQuery.php │ ├── Blackjack │ ├── Domain │ │ ├── Event │ │ │ ├── CardDealt.php │ │ │ ├── DealerStopped.php │ │ │ ├── GameCreated.php │ │ │ ├── GameOver.php │ │ │ └── PlayerIdentityCreated.php │ │ ├── Listener │ │ │ └── GameViewListener.php │ │ ├── Model │ │ │ ├── Card.php │ │ │ ├── DiscardPile.php │ │ │ ├── Game.php │ │ │ ├── GameRules.php │ │ │ ├── GameView.php │ │ │ ├── Hand.php │ │ │ ├── Player.php │ │ │ └── PlayerIdentity.php │ │ ├── Repository │ │ │ ├── GameRepository.php │ │ │ └── GameViewRepository.php │ │ ├── Service │ │ │ ├── Croupier.php │ │ │ ├── Dealer.php │ │ │ └── Table.php │ │ └── Specification │ │ │ ├── DealerLimitSpec.php │ │ │ ├── GetVisibleCardSpec.php │ │ │ └── PlayerBustedSpec.php │ └── Infra │ │ ├── Repository │ │ ├── EventSourceGameRepository.php │ │ └── ORMGameViewRepository.php │ │ └── Resources │ │ └── doctrine │ │ └── GameView.orm.xml │ ├── Common │ ├── Domain │ │ └── Entity │ │ │ └── StreamData.php │ └── Infra │ │ ├── ORMEventStoreFactory.php │ │ ├── ORMStorage.php │ │ └── Resources │ │ └── doctrine │ │ └── StreamData.orm.xml │ └── UI │ ├── Controller │ ├── GameCommandController.php │ └── GameQueryController.php │ └── SymfonyBundle │ ├── AfsyBlackjackBundle.php │ ├── DependencyInjection │ └── AfsyBlackjackExtension.php │ └── Resources │ ├── config │ ├── commands.yml │ ├── controllers.yml │ ├── cqrs.yml │ ├── listeners.yml │ ├── query.yml │ ├── repository.yml │ ├── routing.yml │ └── services.yml │ ├── public │ ├── css │ │ ├── main.css │ │ └── playing_cards.css │ └── img │ │ ├── back.png │ │ └── playing_cards.png │ └── views │ ├── Game │ ├── index.html.twig │ └── show.html.twig │ └── app.html.twig └── web ├── .htaccess ├── app.php ├── app_dev.php ├── apple-touch-icon.png ├── config.php ├── favicon.ico └── robots.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/SymfonyRequirements.php -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/check.php -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/app/console -------------------------------------------------------------------------------- /app/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/composer.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/package.json -------------------------------------------------------------------------------- /spec/Afsy/Blackjack/Domain/Model/GameSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/spec/Afsy/Blackjack/Domain/Model/GameSpec.php -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /src/Afsy/App/Command/DealCardCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/App/Command/DealCardCommand.php -------------------------------------------------------------------------------- /src/Afsy/App/Command/StartGameCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/App/Command/StartGameCommand.php -------------------------------------------------------------------------------- /src/Afsy/App/Command/StopDealCardCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/App/Command/StopDealCardCommand.php -------------------------------------------------------------------------------- /src/Afsy/App/Exception/NotFoundGameViewException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/App/Exception/NotFoundGameViewException.php -------------------------------------------------------------------------------- /src/Afsy/App/GameEngineService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/App/GameEngineService.php -------------------------------------------------------------------------------- /src/Afsy/App/GameViewQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/App/GameViewQuery.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Event/CardDealt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Event/CardDealt.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Event/DealerStopped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Event/DealerStopped.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Event/GameCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Event/GameCreated.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Event/GameOver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Event/GameOver.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Event/PlayerIdentityCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Event/PlayerIdentityCreated.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Listener/GameViewListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Listener/GameViewListener.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Model/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Model/Card.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Model/DiscardPile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Model/DiscardPile.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Model/Game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Model/Game.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Model/GameRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Model/GameRules.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Model/GameView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Model/GameView.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Model/Hand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Model/Hand.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Model/Player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Model/Player.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Model/PlayerIdentity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Model/PlayerIdentity.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Repository/GameRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Repository/GameRepository.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Repository/GameViewRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Repository/GameViewRepository.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Service/Croupier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Service/Croupier.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Service/Dealer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Service/Dealer.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Service/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Service/Table.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Specification/DealerLimitSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Specification/DealerLimitSpec.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Specification/GetVisibleCardSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Specification/GetVisibleCardSpec.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Domain/Specification/PlayerBustedSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Domain/Specification/PlayerBustedSpec.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Infra/Repository/EventSourceGameRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Infra/Repository/EventSourceGameRepository.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Infra/Repository/ORMGameViewRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Infra/Repository/ORMGameViewRepository.php -------------------------------------------------------------------------------- /src/Afsy/Blackjack/Infra/Resources/doctrine/GameView.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Blackjack/Infra/Resources/doctrine/GameView.orm.xml -------------------------------------------------------------------------------- /src/Afsy/Common/Domain/Entity/StreamData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Common/Domain/Entity/StreamData.php -------------------------------------------------------------------------------- /src/Afsy/Common/Infra/ORMEventStoreFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Common/Infra/ORMEventStoreFactory.php -------------------------------------------------------------------------------- /src/Afsy/Common/Infra/ORMStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Common/Infra/ORMStorage.php -------------------------------------------------------------------------------- /src/Afsy/Common/Infra/Resources/doctrine/StreamData.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/Common/Infra/Resources/doctrine/StreamData.orm.xml -------------------------------------------------------------------------------- /src/Afsy/UI/Controller/GameCommandController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/Controller/GameCommandController.php -------------------------------------------------------------------------------- /src/Afsy/UI/Controller/GameQueryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/Controller/GameQueryController.php -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/AfsyBlackjackBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/AfsyBlackjackBundle.php -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/DependencyInjection/AfsyBlackjackExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/DependencyInjection/AfsyBlackjackExtension.php -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/config/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/config/commands.yml -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/config/cqrs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/config/cqrs.yml -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/config/listeners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/config/listeners.yml -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/config/query.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/config/query.yml -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/config/repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/config/repository.yml -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/public/css/main.css -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/public/css/playing_cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/public/css/playing_cards.css -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/public/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/public/img/back.png -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/public/img/playing_cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/public/img/playing_cards.png -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/views/Game/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/views/Game/index.html.twig -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/views/Game/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/views/Game/show.html.twig -------------------------------------------------------------------------------- /src/Afsy/UI/SymfonyBundle/Resources/views/app.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/src/Afsy/UI/SymfonyBundle/Resources/views/app.html.twig -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/web/apple-touch-icon.png -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx/cqrs-php-sandbox/HEAD/web/robots.txt --------------------------------------------------------------------------------