├── .coveralls.yml ├── .docheader ├── .github ├── dependabot.yml └── workflows │ ├── static-analyse.yml │ └── tests.yml ├── .gitignore ├── .php-cs-fixer.php ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README-GIT.md ├── README.md ├── composer.json ├── doc ├── bookdown.json ├── configuration_reference.md ├── event_store.md ├── getting_started.md ├── messenger.md ├── migrating_from_0.8.0.md └── projection_manager.md ├── phpstan.neon ├── phpunit.xml.dist ├── src ├── Command │ ├── AbstractProjectionCommand.php │ ├── FormatsOutput.php │ ├── ProjectionDeleteCommand.php │ ├── ProjectionNamesCommand.php │ ├── ProjectionResetCommand.php │ ├── ProjectionRunCommand.php │ ├── ProjectionStateCommand.php │ ├── ProjectionStopCommand.php │ └── ProjectionStreamPositionsCommand.php ├── DependencyInjection │ ├── Compiler │ │ ├── DeprecateFqcnProjectionsPass.php │ │ ├── MetadataEnricherPass.php │ │ ├── PluginLocatorPass.php │ │ ├── PluginsPass.php │ │ ├── ProjectionOptionsPass.php │ │ └── RegisterProjectionsPass.php │ ├── Configuration.php │ └── ProophEventStoreExtension.php ├── Exception │ ├── EventStoreException.php │ └── RuntimeException.php ├── Factory │ ├── ActionEventEmitterFactory.php │ ├── DefaultActionEventEmitterFactory.php │ ├── DefaultEventStoreFactory.php │ ├── EventStoreFactory.php │ └── ProjectionManagerFactory.php ├── Messenger │ └── EventStoreTransactionMiddleware.php ├── Projection │ ├── Options │ │ ├── ProjectionOptions.php │ │ └── ProjectionOptionsFactory.php │ ├── Projection.php │ ├── ProjectionOptions.php │ └── ReadModelProjection.php ├── ProophEventStoreBundle.php └── Resources │ └── config │ └── event_store.xml └── test ├── BundleTest.php ├── Command ├── Fixture │ ├── Event │ │ └── SomethingWasDone.php │ ├── Projection │ │ ├── BlackHoleProjection.php │ │ ├── BlackHoleReadModel.php │ │ ├── BlackHoleReadModelProjection.php │ │ └── Options │ │ │ └── BlackHoleProjectionOptions.php │ ├── TestKernel.php │ ├── config │ │ └── projections.yml │ └── var │ │ └── .gitkeep ├── ProjectionDeleteCommandTest.php ├── ProjectionNamesCommandTest.php ├── ProjectionResetCommandTest.php ├── ProjectionRunCommandTest.php ├── ProjectionStateCommandTest.php ├── ProjectionStopCommandTest.php └── ProjectionStreamPositionsCommandTest.php ├── DependencyInjection ├── AbstractEventStoreExtensionTestCase.php ├── Compiler │ ├── CompilerPassTestCase.php │ ├── DeprecateFqcnProjectionsPassTest.php │ ├── MetadataEnricherPassTest.php │ ├── PluginsPassTest.php │ ├── ProjectionOptionsPassTest.php │ └── RegisterProjectionsPassTest.php ├── ConfigurationTest.php ├── Fixture │ ├── EventStore │ │ └── BlackHole.php │ ├── MergeExtensionConfigurationPass.php │ ├── Metadata │ │ └── StaticMetadataEnricher.php │ ├── Plugin │ │ └── BlackHole.php │ ├── Projection │ │ ├── BlackHoleProjection.php │ │ ├── BlackHoleReadModelProjection.php │ │ ├── Options │ │ │ └── BlackHoleProjectionOptions.php │ │ ├── TodoProjection.php │ │ └── TodoReadModel.php │ └── config │ │ ├── xml │ │ ├── event_store.xml │ │ ├── event_store_multiple.xml │ │ ├── event_store_with_@.xml │ │ ├── metadata_enricher.xml │ │ ├── metadata_enricher_global.xml │ │ ├── missing_projection_key.xml │ │ ├── plugins.xml │ │ ├── plugins_global.xml │ │ ├── projections.xml │ │ └── unconfigured.xml │ │ └── yml │ │ ├── event_store.yml │ │ ├── event_store_multiple.yml │ │ ├── event_store_with_@.yml │ │ ├── metadata_enricher.yml │ │ ├── metadata_enricher_global.yml │ │ ├── missing_projection_key.yml │ │ ├── plugins.yml │ │ ├── plugins_global.yml │ │ ├── projections.yml │ │ └── unconfigured.yml ├── XmlEventStoreExtensionTest.php └── YamlEventStoreExtensionTest.php ├── Messenger └── EventStoreTransactionMiddlewareTest.php ├── Projection └── Options │ └── ProjectionOptionsFactoryTest.php ├── ProjectionManagerFactoryTest.php └── Resources └── config └── services.yml /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.docheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/.docheader -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/static-analyse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/.github/workflows/static-analyse.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-GIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/README-GIT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /doc/bookdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/doc/bookdown.json -------------------------------------------------------------------------------- /doc/configuration_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/doc/configuration_reference.md -------------------------------------------------------------------------------- /doc/event_store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/doc/event_store.md -------------------------------------------------------------------------------- /doc/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/doc/getting_started.md -------------------------------------------------------------------------------- /doc/messenger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/doc/messenger.md -------------------------------------------------------------------------------- /doc/migrating_from_0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/doc/migrating_from_0.8.0.md -------------------------------------------------------------------------------- /doc/projection_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/doc/projection_manager.md -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Command/AbstractProjectionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Command/AbstractProjectionCommand.php -------------------------------------------------------------------------------- /src/Command/FormatsOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Command/FormatsOutput.php -------------------------------------------------------------------------------- /src/Command/ProjectionDeleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Command/ProjectionDeleteCommand.php -------------------------------------------------------------------------------- /src/Command/ProjectionNamesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Command/ProjectionNamesCommand.php -------------------------------------------------------------------------------- /src/Command/ProjectionResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Command/ProjectionResetCommand.php -------------------------------------------------------------------------------- /src/Command/ProjectionRunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Command/ProjectionRunCommand.php -------------------------------------------------------------------------------- /src/Command/ProjectionStateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Command/ProjectionStateCommand.php -------------------------------------------------------------------------------- /src/Command/ProjectionStopCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Command/ProjectionStopCommand.php -------------------------------------------------------------------------------- /src/Command/ProjectionStreamPositionsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Command/ProjectionStreamPositionsCommand.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/DeprecateFqcnProjectionsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/DependencyInjection/Compiler/DeprecateFqcnProjectionsPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/MetadataEnricherPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/DependencyInjection/Compiler/MetadataEnricherPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/PluginLocatorPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/DependencyInjection/Compiler/PluginLocatorPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/PluginsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/DependencyInjection/Compiler/PluginsPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ProjectionOptionsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/DependencyInjection/Compiler/ProjectionOptionsPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/RegisterProjectionsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/DependencyInjection/Compiler/RegisterProjectionsPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/ProophEventStoreExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/DependencyInjection/ProophEventStoreExtension.php -------------------------------------------------------------------------------- /src/Exception/EventStoreException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Exception/EventStoreException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Factory/ActionEventEmitterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Factory/ActionEventEmitterFactory.php -------------------------------------------------------------------------------- /src/Factory/DefaultActionEventEmitterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Factory/DefaultActionEventEmitterFactory.php -------------------------------------------------------------------------------- /src/Factory/DefaultEventStoreFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Factory/DefaultEventStoreFactory.php -------------------------------------------------------------------------------- /src/Factory/EventStoreFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Factory/EventStoreFactory.php -------------------------------------------------------------------------------- /src/Factory/ProjectionManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Factory/ProjectionManagerFactory.php -------------------------------------------------------------------------------- /src/Messenger/EventStoreTransactionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Messenger/EventStoreTransactionMiddleware.php -------------------------------------------------------------------------------- /src/Projection/Options/ProjectionOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Projection/Options/ProjectionOptions.php -------------------------------------------------------------------------------- /src/Projection/Options/ProjectionOptionsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Projection/Options/ProjectionOptionsFactory.php -------------------------------------------------------------------------------- /src/Projection/Projection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Projection/Projection.php -------------------------------------------------------------------------------- /src/Projection/ProjectionOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Projection/ProjectionOptions.php -------------------------------------------------------------------------------- /src/Projection/ReadModelProjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Projection/ReadModelProjection.php -------------------------------------------------------------------------------- /src/ProophEventStoreBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/ProophEventStoreBundle.php -------------------------------------------------------------------------------- /src/Resources/config/event_store.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/src/Resources/config/event_store.xml -------------------------------------------------------------------------------- /test/BundleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/BundleTest.php -------------------------------------------------------------------------------- /test/Command/Fixture/Event/SomethingWasDone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/Fixture/Event/SomethingWasDone.php -------------------------------------------------------------------------------- /test/Command/Fixture/Projection/BlackHoleProjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/Fixture/Projection/BlackHoleProjection.php -------------------------------------------------------------------------------- /test/Command/Fixture/Projection/BlackHoleReadModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/Fixture/Projection/BlackHoleReadModel.php -------------------------------------------------------------------------------- /test/Command/Fixture/Projection/BlackHoleReadModelProjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/Fixture/Projection/BlackHoleReadModelProjection.php -------------------------------------------------------------------------------- /test/Command/Fixture/Projection/Options/BlackHoleProjectionOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/Fixture/Projection/Options/BlackHoleProjectionOptions.php -------------------------------------------------------------------------------- /test/Command/Fixture/TestKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/Fixture/TestKernel.php -------------------------------------------------------------------------------- /test/Command/Fixture/config/projections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/Fixture/config/projections.yml -------------------------------------------------------------------------------- /test/Command/Fixture/var/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Command/ProjectionDeleteCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/ProjectionDeleteCommandTest.php -------------------------------------------------------------------------------- /test/Command/ProjectionNamesCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/ProjectionNamesCommandTest.php -------------------------------------------------------------------------------- /test/Command/ProjectionResetCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/ProjectionResetCommandTest.php -------------------------------------------------------------------------------- /test/Command/ProjectionRunCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/ProjectionRunCommandTest.php -------------------------------------------------------------------------------- /test/Command/ProjectionStateCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/ProjectionStateCommandTest.php -------------------------------------------------------------------------------- /test/Command/ProjectionStopCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/ProjectionStopCommandTest.php -------------------------------------------------------------------------------- /test/Command/ProjectionStreamPositionsCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Command/ProjectionStreamPositionsCommandTest.php -------------------------------------------------------------------------------- /test/DependencyInjection/AbstractEventStoreExtensionTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/AbstractEventStoreExtensionTestCase.php -------------------------------------------------------------------------------- /test/DependencyInjection/Compiler/CompilerPassTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Compiler/CompilerPassTestCase.php -------------------------------------------------------------------------------- /test/DependencyInjection/Compiler/DeprecateFqcnProjectionsPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Compiler/DeprecateFqcnProjectionsPassTest.php -------------------------------------------------------------------------------- /test/DependencyInjection/Compiler/MetadataEnricherPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Compiler/MetadataEnricherPassTest.php -------------------------------------------------------------------------------- /test/DependencyInjection/Compiler/PluginsPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Compiler/PluginsPassTest.php -------------------------------------------------------------------------------- /test/DependencyInjection/Compiler/ProjectionOptionsPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Compiler/ProjectionOptionsPassTest.php -------------------------------------------------------------------------------- /test/DependencyInjection/Compiler/RegisterProjectionsPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Compiler/RegisterProjectionsPassTest.php -------------------------------------------------------------------------------- /test/DependencyInjection/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/ConfigurationTest.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/EventStore/BlackHole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/EventStore/BlackHole.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/MergeExtensionConfigurationPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/MergeExtensionConfigurationPass.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/Metadata/StaticMetadataEnricher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/Metadata/StaticMetadataEnricher.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/Plugin/BlackHole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/Plugin/BlackHole.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/Projection/BlackHoleProjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/Projection/BlackHoleProjection.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/Projection/BlackHoleReadModelProjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/Projection/BlackHoleReadModelProjection.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/Projection/Options/BlackHoleProjectionOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/Projection/Options/BlackHoleProjectionOptions.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/Projection/TodoProjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/Projection/TodoProjection.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/Projection/TodoReadModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/Projection/TodoReadModel.php -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/event_store.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/event_store.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/event_store_multiple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/event_store_multiple.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/event_store_with_@.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/event_store_with_@.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/metadata_enricher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/metadata_enricher.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/metadata_enricher_global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/metadata_enricher_global.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/missing_projection_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/missing_projection_key.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/plugins.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/plugins_global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/plugins_global.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/projections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/projections.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/xml/unconfigured.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/xml/unconfigured.xml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/event_store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/yml/event_store.yml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/event_store_multiple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/yml/event_store_multiple.yml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/event_store_with_@.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/yml/event_store_with_@.yml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/metadata_enricher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/yml/metadata_enricher.yml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/metadata_enricher_global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/yml/metadata_enricher_global.yml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/missing_projection_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/yml/missing_projection_key.yml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/yml/plugins.yml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/plugins_global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/yml/plugins_global.yml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/projections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/Fixture/config/yml/projections.yml -------------------------------------------------------------------------------- /test/DependencyInjection/Fixture/config/yml/unconfigured.yml: -------------------------------------------------------------------------------- 1 | prooph_event_store: ~ 2 | -------------------------------------------------------------------------------- /test/DependencyInjection/XmlEventStoreExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/XmlEventStoreExtensionTest.php -------------------------------------------------------------------------------- /test/DependencyInjection/YamlEventStoreExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/DependencyInjection/YamlEventStoreExtensionTest.php -------------------------------------------------------------------------------- /test/Messenger/EventStoreTransactionMiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Messenger/EventStoreTransactionMiddlewareTest.php -------------------------------------------------------------------------------- /test/Projection/Options/ProjectionOptionsFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Projection/Options/ProjectionOptionsFactoryTest.php -------------------------------------------------------------------------------- /test/ProjectionManagerFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/ProjectionManagerFactoryTest.php -------------------------------------------------------------------------------- /test/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-symfony-bundle/HEAD/test/Resources/config/services.yml --------------------------------------------------------------------------------