├── .gitattributes ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── psalm.xml └── src ├── ConnectionSettings.php ├── ConnectionString.php ├── EventStoreConnectionFactory.php ├── Exception ├── PersistentSubscriptionCommandFailed.php ├── ProjectionCommandConflict.php ├── ProjectionCommandFailed.php ├── UserCommandConflictException.php └── UserCommandFailed.php ├── Http └── HttpClient.php ├── Internal ├── ConnectToPersistentSubscriptionOperation.php ├── EventStoreAllCatchUpSubscription.php ├── EventStoreCatchUpSubscription.php ├── EventStoreHttpConnection.php ├── EventStorePersistentSubscription.php ├── EventStoreStreamCatchUpSubscription.php ├── PersistentEventStoreSubscription.php ├── ResolvedEventParser.php ├── VolatileEventStoreAllSubscription.php └── VolatileEventStoreStreamSubscription.php ├── PersistentSubscriptions ├── PersistentSubscriptionsManager.php └── PersistentSubscriptionsManagerFactory.php ├── Projections ├── ProjectionsManager.php ├── ProjectionsManagerFactory.php ├── QueryManager.php └── QueryManagerFactory.php ├── Uri.php └── UserManagement ├── UsersManager.php └── UsersManagerFactory.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/.gitattributes -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/composer.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/ConnectionSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/ConnectionSettings.php -------------------------------------------------------------------------------- /src/ConnectionString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/ConnectionString.php -------------------------------------------------------------------------------- /src/EventStoreConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/EventStoreConnectionFactory.php -------------------------------------------------------------------------------- /src/Exception/PersistentSubscriptionCommandFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Exception/PersistentSubscriptionCommandFailed.php -------------------------------------------------------------------------------- /src/Exception/ProjectionCommandConflict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Exception/ProjectionCommandConflict.php -------------------------------------------------------------------------------- /src/Exception/ProjectionCommandFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Exception/ProjectionCommandFailed.php -------------------------------------------------------------------------------- /src/Exception/UserCommandConflictException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Exception/UserCommandConflictException.php -------------------------------------------------------------------------------- /src/Exception/UserCommandFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Exception/UserCommandFailed.php -------------------------------------------------------------------------------- /src/Http/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Http/HttpClient.php -------------------------------------------------------------------------------- /src/Internal/ConnectToPersistentSubscriptionOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/ConnectToPersistentSubscriptionOperation.php -------------------------------------------------------------------------------- /src/Internal/EventStoreAllCatchUpSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/EventStoreAllCatchUpSubscription.php -------------------------------------------------------------------------------- /src/Internal/EventStoreCatchUpSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/EventStoreCatchUpSubscription.php -------------------------------------------------------------------------------- /src/Internal/EventStoreHttpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/EventStoreHttpConnection.php -------------------------------------------------------------------------------- /src/Internal/EventStorePersistentSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/EventStorePersistentSubscription.php -------------------------------------------------------------------------------- /src/Internal/EventStoreStreamCatchUpSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/EventStoreStreamCatchUpSubscription.php -------------------------------------------------------------------------------- /src/Internal/PersistentEventStoreSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/PersistentEventStoreSubscription.php -------------------------------------------------------------------------------- /src/Internal/ResolvedEventParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/ResolvedEventParser.php -------------------------------------------------------------------------------- /src/Internal/VolatileEventStoreAllSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/VolatileEventStoreAllSubscription.php -------------------------------------------------------------------------------- /src/Internal/VolatileEventStoreStreamSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Internal/VolatileEventStoreStreamSubscription.php -------------------------------------------------------------------------------- /src/PersistentSubscriptions/PersistentSubscriptionsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/PersistentSubscriptions/PersistentSubscriptionsManager.php -------------------------------------------------------------------------------- /src/PersistentSubscriptions/PersistentSubscriptionsManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/PersistentSubscriptions/PersistentSubscriptionsManagerFactory.php -------------------------------------------------------------------------------- /src/Projections/ProjectionsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Projections/ProjectionsManager.php -------------------------------------------------------------------------------- /src/Projections/ProjectionsManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Projections/ProjectionsManagerFactory.php -------------------------------------------------------------------------------- /src/Projections/QueryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Projections/QueryManager.php -------------------------------------------------------------------------------- /src/Projections/QueryManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Projections/QueryManagerFactory.php -------------------------------------------------------------------------------- /src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/Uri.php -------------------------------------------------------------------------------- /src/UserManagement/UsersManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/UserManagement/UsersManager.php -------------------------------------------------------------------------------- /src/UserManagement/UsersManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prooph/event-store-http-client/HEAD/src/UserManagement/UsersManagerFactory.php --------------------------------------------------------------------------------