├── Bridge ├── File │ ├── FileContentsUrlProviderInterface.php │ ├── FileRequestUrlProviderInterface.php │ ├── HttpHandlerDumpPathProviderInterface.php │ └── PortalNodeFilesystemStreamProtocolProviderInterface.php └── PortalNode │ └── Configuration │ ├── ClosureInstructionToken.php │ ├── Config.php │ ├── Contract │ ├── InstructionLoaderInterface.php │ └── InstructionTokenContract.php │ ├── InstructionFileLoader.php │ └── PortalNodeConfigurationHelper.php ├── CHANGELOG.md ├── Component ├── Composer │ ├── Contract │ │ └── PackageConfigurationLoaderInterface.php │ ├── PackageConfiguration.php │ ├── PackageConfigurationClassMap.php │ ├── PackageConfigurationCollection.php │ └── PackageConfigurationLoader.php ├── LogMessage.php └── Logger │ ├── ExceptionCodeLogger.php │ └── FlowComponentCodeOriginFinderLogger.php ├── Configuration ├── ConfigurationService.php ├── Contract │ ├── ConfigurationServiceInterface.php │ ├── PortalNodeConfigurationProcessorInterface.php │ └── PortalNodeConfigurationProcessorServiceInterface.php ├── PortalNodeConfigurationCacheProcessor.php ├── PortalNodeConfigurationInstructionProcessor.php └── PortalNodeConfigurationProcessorService.php ├── Emission ├── AbstractBufferedResultProcessingEmitter.php ├── Contract │ ├── EmissionFlowEmittersFactoryInterface.php │ ├── EmitContextFactoryInterface.php │ ├── EmitServiceInterface.php │ ├── EmitterStackBuilderFactoryInterface.php │ ├── EmitterStackBuilderInterface.php │ └── EmitterStackProcessorInterface.php ├── EmissionFlowEmittersFactory.php ├── EmitContext.php ├── EmitContextFactory.php ├── EmitService.php ├── EmitterCodeOriginFinder.php ├── EmitterStack.php ├── EmitterStackBuilder.php ├── EmitterStackBuilderFactory.php ├── EmitterStackProcessor.php ├── IdentityMappingEmitter.php └── ReceiveJobDispatchingEmitter.php ├── Event └── PostReceptionEvent.php ├── Exploration ├── AbstractBufferedResultProcessingExplorer.php ├── Contract │ ├── DirectEmissionFlowEmittersFactoryInterface.php │ ├── ExplorationFlowExplorersFactoryInterface.php │ ├── ExploreContextFactoryInterface.php │ ├── ExploreServiceInterface.php │ ├── ExplorerStackBuilderFactoryInterface.php │ ├── ExplorerStackBuilderInterface.php │ └── ExplorerStackProcessorInterface.php ├── DirectEmissionFlowEmittersFactory.php ├── DirectEmitter.php ├── DirectEmittingExplorer.php ├── EmissionJobDispatchingExplorer.php ├── Exception │ └── PortalNodeNotFoundException.php ├── ExplorationFlowExplorersFactory.php ├── ExploreContext.php ├── ExploreContextFactory.php ├── ExploreService.php ├── ExplorerCodeOriginFinder.php ├── ExplorerStack.php ├── ExplorerStackBuilder.php ├── ExplorerStackBuilderFactory.php ├── ExplorerStackProcessor.php └── IdentityMappingExplorer.php ├── File ├── FileReferenceFactory.php ├── FileReferenceResolver.php ├── Filesystem │ ├── Contract │ │ ├── StreamUriSchemePathConverterInterface.php │ │ └── StreamWrapperInterface.php │ ├── RewritePathStreamWrapper.php │ └── StreamUriSchemePathConverter.php ├── Reference │ ├── ContentsFileReference.php │ ├── PublicUrlFileReference.php │ └── RequestFileReference.php └── ResolvedReference │ ├── ResolvedContentsFileReference.php │ ├── ResolvedPublicUrlFileReference.php │ └── ResolvedRequestFileReference.php ├── Flow ├── DirectEmissionFlow │ └── DirectEmissionFlow.php └── MessageQueueFlow │ ├── Message │ └── JobMessage.php │ └── MessageHandler.php ├── Job ├── Contract │ ├── DelegatingJobActorContract.php │ ├── EmissionHandlerInterface.php │ ├── ExplorationHandlerInterface.php │ ├── JobContract.php │ ├── JobDispatcherContract.php │ └── ReceptionHandlerInterface.php ├── DelegatingJobActor.php ├── Exception │ └── ReceptionJobHandlingException.php ├── Handler │ ├── EmissionHandler.php │ ├── ExplorationHandler.php │ └── ReceptionHandler.php ├── JobCollection.php ├── JobData.php ├── JobDataCollection.php ├── JobDispatcher.php ├── Transition │ ├── Contract │ │ ├── EmittedEntitiesToJobsConverterInterface.php │ │ └── ExploredPrimaryKeysToJobsConverterInterface.php │ ├── EmittedEntitiesToReceiveJobsConverter.php │ └── ExploredPrimaryKeysToEmissionJobsConverter.php └── Type │ ├── AbstractJobType.php │ ├── Emission.php │ ├── Exploration.php │ └── Reception.php ├── Mapping ├── MappingNodeStruct.php ├── MappingStruct.php └── Publisher.php ├── Parallelization ├── Contract │ └── ResourceLockStorageContract.php ├── ResourceLockStorage.php └── ResourceLocking.php ├── Portal ├── AbstractPortalNodeContext.php ├── ComposerPortalLoader.php ├── Contract │ ├── PackageQueryMatcherInterface.php │ ├── PortalFactoryContract.php │ ├── PortalNodeContainerFacadeContract.php │ ├── PortalRegistryInterface.php │ └── PortalStackServiceContainerBuilderInterface.php ├── Exception │ ├── AbstractInstantiationException.php │ ├── InaccessableConstructorOnInstantionException.php │ ├── ServiceNotFoundException.php │ ├── ServiceNotInstantiable.php │ └── ServiceNotInstantiableEndlessLoopDetected.php ├── File │ └── Filesystem │ │ ├── Contract │ │ └── FilesystemFactoryInterface.php │ │ ├── Filesystem.php │ │ └── FilesystemFactory.php ├── FlowComponentRegistry.php ├── PackageQueryMatcher.php ├── PortalConfiguration.php ├── PortalFactory.php ├── PortalLogger.php ├── PortalNodeContainerFacade.php ├── PortalRegistry.php ├── PortalStackServiceContainerBuilder.php ├── PortalStackServiceContainerFactory.php ├── PortalStorage.php ├── PortalStorageFactory.php ├── PreviewPortalNodeStorage.php ├── ServiceContainerCompilerPass │ ├── AddConfigurationBindingsCompilerPass.php │ ├── AddHttpMiddlewareClientCompilerPass.php │ ├── AddHttpMiddlewareCollectorCompilerPass.php │ ├── AllDefinitionDefaultsCompilerPass.php │ ├── BuildDefinitionForFlowComponentRegistryCompilerPass.php │ ├── RemoveAutoPrototypedDefinitionsCompilerPass.php │ └── SetConfigurationAsParameterCompilerPass.php └── Storage │ ├── Contract │ ├── PortalNodeStorageItemPackerInterface.php │ └── PortalNodeStorageItemUnpackerInterface.php │ ├── PortalNodeStorageItemPacker.php │ └── PortalNodeStorageItemUnpacker.php ├── README.md ├── Reception ├── Contract │ ├── PostProcessorContract.php │ ├── ReceiveContextFactoryInterface.php │ ├── ReceiveServiceInterface.php │ ├── ReceiverStackBuilderFactoryInterface.php │ ├── ReceiverStackBuilderInterface.php │ ├── ReceiverStackProcessorInterface.php │ └── ReceptionFlowReceiversFactoryInterface.php ├── LockingReceiver.php ├── PostProcessing │ ├── MarkAsFailedData.php │ ├── MarkAsFailedPostProcessor.php │ ├── SaveMappingsData.php │ └── SaveMappingsPostProcessor.php ├── ReceiveContext.php ├── ReceiveContextFactory.php ├── ReceiveService.php ├── ReceiverCodeOriginFinder.php ├── ReceiverStack.php ├── ReceiverStackBuilder.php ├── ReceiverStackBuilderFactory.php ├── ReceiverStackProcessor.php ├── ReceptionFlowReceiversFactory.php └── Support │ ├── LockAttachable.php │ └── PrimaryKeyChangesAttachable.php ├── StatusReporting ├── Contract │ ├── StatusReportingContextFactoryInterface.php │ └── StatusReportingServiceInterface.php ├── StatusReporterCodeOriginFinder.php ├── StatusReportingContext.php ├── StatusReportingContextFactory.php └── StatusReportingService.php ├── Storage ├── Contract │ ├── RequestStorageContract.php │ └── StreamPathContract.php ├── Exception │ └── GzipCompressException.php ├── Filesystem │ ├── AbstractFilesystem.php │ ├── FilesystemFactory.php │ ├── PrefixAdapter.php │ └── PrefixFilesystem.php ├── NormalizationRegistry.php ├── Normalizer │ ├── Psr7RequestDenormalizer.php │ ├── Psr7RequestNormalizer.php │ ├── ScalarDenormalizer.php │ ├── ScalarNormalizer.php │ ├── SerializableCompressDenormalizer.php │ ├── SerializableCompressNormalizer.php │ ├── SerializableDenormalizer.php │ ├── SerializableNormalizer.php │ ├── StreamDenormalizer.php │ └── StreamNormalizer.php ├── PrimaryKeyToEntityHydrator.php └── RequestStorage.php ├── Support ├── EntityStatus.php └── HttpMiddlewareCollector.php ├── Ui └── Admin │ ├── Action │ ├── Context │ │ ├── UiActionContext.php │ │ └── UiActionContextFactory.php │ ├── JobRunUi.php │ ├── JobScheduleUi.php │ ├── PortalEntityListUi.php │ ├── PortalNodeAddUi.php │ ├── PortalNodeConfigurationGetUi.php │ ├── PortalNodeConfigurationRenderUi.php │ ├── PortalNodeEntityListUi.php │ ├── PortalNodeExtensionActivateUi.php │ ├── PortalNodeExtensionBrowseUi.php │ ├── PortalNodeExtensionDeactivateUi.php │ ├── PortalNodeRemoveUi.php │ ├── PortalNodeStatusReportUi.php │ ├── PortalNodeStorageGetUi.php │ ├── RouteAddUi.php │ ├── RouteAddUiDefault.php │ ├── RouteBrowseUi.php │ └── RouteRemoveUi.php │ ├── Audit │ ├── AuditTrail.php │ ├── AuditTrailFactory.php │ ├── AuditableDataSerializer.php │ ├── Contract │ │ ├── AuditTrailFactoryInterface.php │ │ ├── AuditTrailInterface.php │ │ └── AuditableDataSerializerInterface.php │ └── NullAuditTrail.php │ └── Support │ ├── Contract │ └── PortalNodeExistenceSeparatorInterface.php │ ├── PortalNodeAliasResolver.php │ ├── PortalNodeExistenceSeparationResult.php │ ├── PortalNodeExistenceSeparator.php │ └── StorageKeyAccessor.php ├── Web └── Http │ ├── Contract │ ├── HttpHandleContextFactoryInterface.php │ ├── HttpHandleFlowHttpHandlersFactoryInterface.php │ ├── HttpHandleServiceInterface.php │ ├── HttpHandlerStackBuilderFactoryInterface.php │ ├── HttpHandlerStackBuilderInterface.php │ ├── HttpHandlerStackProcessorInterface.php │ ├── HttpHandlerUrlProviderFactoryInterface.php │ ├── RequestDeserializerInterface.php │ └── RequestSerializerInterface.php │ ├── Dump │ ├── Contract │ │ ├── ServerRequestCycleDumpCheckerInterface.php │ │ └── ServerRequestCycleDumperInterface.php │ ├── SampleRateServerRequestCycleDumpChecker.php │ └── ServerRequestCycleDumper.php │ ├── Exception │ ├── RequestDeserializationException.php │ └── RequestSerializationException.php │ ├── Formatter │ ├── Psr7MessageCurlShellFormatter.php │ ├── Psr7MessageRawHttpFormatter.php │ └── Support │ │ ├── Contract │ │ └── HeaderUtilityInterface.php │ │ └── HeaderUtility.php │ ├── Handler │ └── HttpMiddlewareChainHandler.php │ ├── HttpClient.php │ ├── HttpHandleContext.php │ ├── HttpHandleContextFactory.php │ ├── HttpHandleFlowHttpHandlersFactory.php │ ├── HttpHandleService.php │ ├── HttpHandlerCodeOriginFinder.php │ ├── HttpHandlerStackBuilder.php │ ├── HttpHandlerStackBuilderFactory.php │ ├── HttpHandlerStackProcessor.php │ ├── HttpKernel.php │ ├── HttpMiddlewareClient.php │ ├── HttpMiddlewareHandler.php │ ├── Psr7MessageMultiPartFormDataBuilder.php │ ├── RequestDeserializer.php │ └── RequestSerializer.php └── composer.json /Bridge/File/FileContentsUrlProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/File/FileContentsUrlProviderInterface.php -------------------------------------------------------------------------------- /Bridge/File/FileRequestUrlProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/File/FileRequestUrlProviderInterface.php -------------------------------------------------------------------------------- /Bridge/File/HttpHandlerDumpPathProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/File/HttpHandlerDumpPathProviderInterface.php -------------------------------------------------------------------------------- /Bridge/File/PortalNodeFilesystemStreamProtocolProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/File/PortalNodeFilesystemStreamProtocolProviderInterface.php -------------------------------------------------------------------------------- /Bridge/PortalNode/Configuration/ClosureInstructionToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/PortalNode/Configuration/ClosureInstructionToken.php -------------------------------------------------------------------------------- /Bridge/PortalNode/Configuration/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/PortalNode/Configuration/Config.php -------------------------------------------------------------------------------- /Bridge/PortalNode/Configuration/Contract/InstructionLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/PortalNode/Configuration/Contract/InstructionLoaderInterface.php -------------------------------------------------------------------------------- /Bridge/PortalNode/Configuration/Contract/InstructionTokenContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/PortalNode/Configuration/Contract/InstructionTokenContract.php -------------------------------------------------------------------------------- /Bridge/PortalNode/Configuration/InstructionFileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/PortalNode/Configuration/InstructionFileLoader.php -------------------------------------------------------------------------------- /Bridge/PortalNode/Configuration/PortalNodeConfigurationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Bridge/PortalNode/Configuration/PortalNodeConfigurationHelper.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Component/Composer/Contract/PackageConfigurationLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Component/Composer/Contract/PackageConfigurationLoaderInterface.php -------------------------------------------------------------------------------- /Component/Composer/PackageConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Component/Composer/PackageConfiguration.php -------------------------------------------------------------------------------- /Component/Composer/PackageConfigurationClassMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Component/Composer/PackageConfigurationClassMap.php -------------------------------------------------------------------------------- /Component/Composer/PackageConfigurationCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Component/Composer/PackageConfigurationCollection.php -------------------------------------------------------------------------------- /Component/Composer/PackageConfigurationLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Component/Composer/PackageConfigurationLoader.php -------------------------------------------------------------------------------- /Component/LogMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Component/LogMessage.php -------------------------------------------------------------------------------- /Component/Logger/ExceptionCodeLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Component/Logger/ExceptionCodeLogger.php -------------------------------------------------------------------------------- /Component/Logger/FlowComponentCodeOriginFinderLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Component/Logger/FlowComponentCodeOriginFinderLogger.php -------------------------------------------------------------------------------- /Configuration/ConfigurationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Configuration/ConfigurationService.php -------------------------------------------------------------------------------- /Configuration/Contract/ConfigurationServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Configuration/Contract/ConfigurationServiceInterface.php -------------------------------------------------------------------------------- /Configuration/Contract/PortalNodeConfigurationProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Configuration/Contract/PortalNodeConfigurationProcessorInterface.php -------------------------------------------------------------------------------- /Configuration/Contract/PortalNodeConfigurationProcessorServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Configuration/Contract/PortalNodeConfigurationProcessorServiceInterface.php -------------------------------------------------------------------------------- /Configuration/PortalNodeConfigurationCacheProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Configuration/PortalNodeConfigurationCacheProcessor.php -------------------------------------------------------------------------------- /Configuration/PortalNodeConfigurationInstructionProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Configuration/PortalNodeConfigurationInstructionProcessor.php -------------------------------------------------------------------------------- /Configuration/PortalNodeConfigurationProcessorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Configuration/PortalNodeConfigurationProcessorService.php -------------------------------------------------------------------------------- /Emission/AbstractBufferedResultProcessingEmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/AbstractBufferedResultProcessingEmitter.php -------------------------------------------------------------------------------- /Emission/Contract/EmissionFlowEmittersFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/Contract/EmissionFlowEmittersFactoryInterface.php -------------------------------------------------------------------------------- /Emission/Contract/EmitContextFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/Contract/EmitContextFactoryInterface.php -------------------------------------------------------------------------------- /Emission/Contract/EmitServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/Contract/EmitServiceInterface.php -------------------------------------------------------------------------------- /Emission/Contract/EmitterStackBuilderFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/Contract/EmitterStackBuilderFactoryInterface.php -------------------------------------------------------------------------------- /Emission/Contract/EmitterStackBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/Contract/EmitterStackBuilderInterface.php -------------------------------------------------------------------------------- /Emission/Contract/EmitterStackProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/Contract/EmitterStackProcessorInterface.php -------------------------------------------------------------------------------- /Emission/EmissionFlowEmittersFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/EmissionFlowEmittersFactory.php -------------------------------------------------------------------------------- /Emission/EmitContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/EmitContext.php -------------------------------------------------------------------------------- /Emission/EmitContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/EmitContextFactory.php -------------------------------------------------------------------------------- /Emission/EmitService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/EmitService.php -------------------------------------------------------------------------------- /Emission/EmitterCodeOriginFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/EmitterCodeOriginFinder.php -------------------------------------------------------------------------------- /Emission/EmitterStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/EmitterStack.php -------------------------------------------------------------------------------- /Emission/EmitterStackBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/EmitterStackBuilder.php -------------------------------------------------------------------------------- /Emission/EmitterStackBuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/EmitterStackBuilderFactory.php -------------------------------------------------------------------------------- /Emission/EmitterStackProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/EmitterStackProcessor.php -------------------------------------------------------------------------------- /Emission/IdentityMappingEmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/IdentityMappingEmitter.php -------------------------------------------------------------------------------- /Emission/ReceiveJobDispatchingEmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Emission/ReceiveJobDispatchingEmitter.php -------------------------------------------------------------------------------- /Event/PostReceptionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Event/PostReceptionEvent.php -------------------------------------------------------------------------------- /Exploration/AbstractBufferedResultProcessingExplorer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/AbstractBufferedResultProcessingExplorer.php -------------------------------------------------------------------------------- /Exploration/Contract/DirectEmissionFlowEmittersFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/Contract/DirectEmissionFlowEmittersFactoryInterface.php -------------------------------------------------------------------------------- /Exploration/Contract/ExplorationFlowExplorersFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/Contract/ExplorationFlowExplorersFactoryInterface.php -------------------------------------------------------------------------------- /Exploration/Contract/ExploreContextFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/Contract/ExploreContextFactoryInterface.php -------------------------------------------------------------------------------- /Exploration/Contract/ExploreServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/Contract/ExploreServiceInterface.php -------------------------------------------------------------------------------- /Exploration/Contract/ExplorerStackBuilderFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/Contract/ExplorerStackBuilderFactoryInterface.php -------------------------------------------------------------------------------- /Exploration/Contract/ExplorerStackBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/Contract/ExplorerStackBuilderInterface.php -------------------------------------------------------------------------------- /Exploration/Contract/ExplorerStackProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/Contract/ExplorerStackProcessorInterface.php -------------------------------------------------------------------------------- /Exploration/DirectEmissionFlowEmittersFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/DirectEmissionFlowEmittersFactory.php -------------------------------------------------------------------------------- /Exploration/DirectEmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/DirectEmitter.php -------------------------------------------------------------------------------- /Exploration/DirectEmittingExplorer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/DirectEmittingExplorer.php -------------------------------------------------------------------------------- /Exploration/EmissionJobDispatchingExplorer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/EmissionJobDispatchingExplorer.php -------------------------------------------------------------------------------- /Exploration/Exception/PortalNodeNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/Exception/PortalNodeNotFoundException.php -------------------------------------------------------------------------------- /Exploration/ExplorationFlowExplorersFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/ExplorationFlowExplorersFactory.php -------------------------------------------------------------------------------- /Exploration/ExploreContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/ExploreContext.php -------------------------------------------------------------------------------- /Exploration/ExploreContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/ExploreContextFactory.php -------------------------------------------------------------------------------- /Exploration/ExploreService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/ExploreService.php -------------------------------------------------------------------------------- /Exploration/ExplorerCodeOriginFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/ExplorerCodeOriginFinder.php -------------------------------------------------------------------------------- /Exploration/ExplorerStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/ExplorerStack.php -------------------------------------------------------------------------------- /Exploration/ExplorerStackBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/ExplorerStackBuilder.php -------------------------------------------------------------------------------- /Exploration/ExplorerStackBuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/ExplorerStackBuilderFactory.php -------------------------------------------------------------------------------- /Exploration/ExplorerStackProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/ExplorerStackProcessor.php -------------------------------------------------------------------------------- /Exploration/IdentityMappingExplorer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Exploration/IdentityMappingExplorer.php -------------------------------------------------------------------------------- /File/FileReferenceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/FileReferenceFactory.php -------------------------------------------------------------------------------- /File/FileReferenceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/FileReferenceResolver.php -------------------------------------------------------------------------------- /File/Filesystem/Contract/StreamUriSchemePathConverterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/Filesystem/Contract/StreamUriSchemePathConverterInterface.php -------------------------------------------------------------------------------- /File/Filesystem/Contract/StreamWrapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/Filesystem/Contract/StreamWrapperInterface.php -------------------------------------------------------------------------------- /File/Filesystem/RewritePathStreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/Filesystem/RewritePathStreamWrapper.php -------------------------------------------------------------------------------- /File/Filesystem/StreamUriSchemePathConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/Filesystem/StreamUriSchemePathConverter.php -------------------------------------------------------------------------------- /File/Reference/ContentsFileReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/Reference/ContentsFileReference.php -------------------------------------------------------------------------------- /File/Reference/PublicUrlFileReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/Reference/PublicUrlFileReference.php -------------------------------------------------------------------------------- /File/Reference/RequestFileReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/Reference/RequestFileReference.php -------------------------------------------------------------------------------- /File/ResolvedReference/ResolvedContentsFileReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/ResolvedReference/ResolvedContentsFileReference.php -------------------------------------------------------------------------------- /File/ResolvedReference/ResolvedPublicUrlFileReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/ResolvedReference/ResolvedPublicUrlFileReference.php -------------------------------------------------------------------------------- /File/ResolvedReference/ResolvedRequestFileReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/File/ResolvedReference/ResolvedRequestFileReference.php -------------------------------------------------------------------------------- /Flow/DirectEmissionFlow/DirectEmissionFlow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Flow/DirectEmissionFlow/DirectEmissionFlow.php -------------------------------------------------------------------------------- /Flow/MessageQueueFlow/Message/JobMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Flow/MessageQueueFlow/Message/JobMessage.php -------------------------------------------------------------------------------- /Flow/MessageQueueFlow/MessageHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Flow/MessageQueueFlow/MessageHandler.php -------------------------------------------------------------------------------- /Job/Contract/DelegatingJobActorContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Contract/DelegatingJobActorContract.php -------------------------------------------------------------------------------- /Job/Contract/EmissionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Contract/EmissionHandlerInterface.php -------------------------------------------------------------------------------- /Job/Contract/ExplorationHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Contract/ExplorationHandlerInterface.php -------------------------------------------------------------------------------- /Job/Contract/JobContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Contract/JobContract.php -------------------------------------------------------------------------------- /Job/Contract/JobDispatcherContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Contract/JobDispatcherContract.php -------------------------------------------------------------------------------- /Job/Contract/ReceptionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Contract/ReceptionHandlerInterface.php -------------------------------------------------------------------------------- /Job/DelegatingJobActor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/DelegatingJobActor.php -------------------------------------------------------------------------------- /Job/Exception/ReceptionJobHandlingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Exception/ReceptionJobHandlingException.php -------------------------------------------------------------------------------- /Job/Handler/EmissionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Handler/EmissionHandler.php -------------------------------------------------------------------------------- /Job/Handler/ExplorationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Handler/ExplorationHandler.php -------------------------------------------------------------------------------- /Job/Handler/ReceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Handler/ReceptionHandler.php -------------------------------------------------------------------------------- /Job/JobCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/JobCollection.php -------------------------------------------------------------------------------- /Job/JobData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/JobData.php -------------------------------------------------------------------------------- /Job/JobDataCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/JobDataCollection.php -------------------------------------------------------------------------------- /Job/JobDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/JobDispatcher.php -------------------------------------------------------------------------------- /Job/Transition/Contract/EmittedEntitiesToJobsConverterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Transition/Contract/EmittedEntitiesToJobsConverterInterface.php -------------------------------------------------------------------------------- /Job/Transition/Contract/ExploredPrimaryKeysToJobsConverterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Transition/Contract/ExploredPrimaryKeysToJobsConverterInterface.php -------------------------------------------------------------------------------- /Job/Transition/EmittedEntitiesToReceiveJobsConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Transition/EmittedEntitiesToReceiveJobsConverter.php -------------------------------------------------------------------------------- /Job/Transition/ExploredPrimaryKeysToEmissionJobsConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Transition/ExploredPrimaryKeysToEmissionJobsConverter.php -------------------------------------------------------------------------------- /Job/Type/AbstractJobType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Type/AbstractJobType.php -------------------------------------------------------------------------------- /Job/Type/Emission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Type/Emission.php -------------------------------------------------------------------------------- /Job/Type/Exploration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Type/Exploration.php -------------------------------------------------------------------------------- /Job/Type/Reception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Job/Type/Reception.php -------------------------------------------------------------------------------- /Mapping/MappingNodeStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Mapping/MappingNodeStruct.php -------------------------------------------------------------------------------- /Mapping/MappingStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Mapping/MappingStruct.php -------------------------------------------------------------------------------- /Mapping/Publisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Mapping/Publisher.php -------------------------------------------------------------------------------- /Parallelization/Contract/ResourceLockStorageContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Parallelization/Contract/ResourceLockStorageContract.php -------------------------------------------------------------------------------- /Parallelization/ResourceLockStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Parallelization/ResourceLockStorage.php -------------------------------------------------------------------------------- /Parallelization/ResourceLocking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Parallelization/ResourceLocking.php -------------------------------------------------------------------------------- /Portal/AbstractPortalNodeContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/AbstractPortalNodeContext.php -------------------------------------------------------------------------------- /Portal/ComposerPortalLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/ComposerPortalLoader.php -------------------------------------------------------------------------------- /Portal/Contract/PackageQueryMatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Contract/PackageQueryMatcherInterface.php -------------------------------------------------------------------------------- /Portal/Contract/PortalFactoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Contract/PortalFactoryContract.php -------------------------------------------------------------------------------- /Portal/Contract/PortalNodeContainerFacadeContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Contract/PortalNodeContainerFacadeContract.php -------------------------------------------------------------------------------- /Portal/Contract/PortalRegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Contract/PortalRegistryInterface.php -------------------------------------------------------------------------------- /Portal/Contract/PortalStackServiceContainerBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Contract/PortalStackServiceContainerBuilderInterface.php -------------------------------------------------------------------------------- /Portal/Exception/AbstractInstantiationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Exception/AbstractInstantiationException.php -------------------------------------------------------------------------------- /Portal/Exception/InaccessableConstructorOnInstantionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Exception/InaccessableConstructorOnInstantionException.php -------------------------------------------------------------------------------- /Portal/Exception/ServiceNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Exception/ServiceNotFoundException.php -------------------------------------------------------------------------------- /Portal/Exception/ServiceNotInstantiable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Exception/ServiceNotInstantiable.php -------------------------------------------------------------------------------- /Portal/Exception/ServiceNotInstantiableEndlessLoopDetected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Exception/ServiceNotInstantiableEndlessLoopDetected.php -------------------------------------------------------------------------------- /Portal/File/Filesystem/Contract/FilesystemFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/File/Filesystem/Contract/FilesystemFactoryInterface.php -------------------------------------------------------------------------------- /Portal/File/Filesystem/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/File/Filesystem/Filesystem.php -------------------------------------------------------------------------------- /Portal/File/Filesystem/FilesystemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/File/Filesystem/FilesystemFactory.php -------------------------------------------------------------------------------- /Portal/FlowComponentRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/FlowComponentRegistry.php -------------------------------------------------------------------------------- /Portal/PackageQueryMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PackageQueryMatcher.php -------------------------------------------------------------------------------- /Portal/PortalConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PortalConfiguration.php -------------------------------------------------------------------------------- /Portal/PortalFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PortalFactory.php -------------------------------------------------------------------------------- /Portal/PortalLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PortalLogger.php -------------------------------------------------------------------------------- /Portal/PortalNodeContainerFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PortalNodeContainerFacade.php -------------------------------------------------------------------------------- /Portal/PortalRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PortalRegistry.php -------------------------------------------------------------------------------- /Portal/PortalStackServiceContainerBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PortalStackServiceContainerBuilder.php -------------------------------------------------------------------------------- /Portal/PortalStackServiceContainerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PortalStackServiceContainerFactory.php -------------------------------------------------------------------------------- /Portal/PortalStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PortalStorage.php -------------------------------------------------------------------------------- /Portal/PortalStorageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PortalStorageFactory.php -------------------------------------------------------------------------------- /Portal/PreviewPortalNodeStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/PreviewPortalNodeStorage.php -------------------------------------------------------------------------------- /Portal/ServiceContainerCompilerPass/AddConfigurationBindingsCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/ServiceContainerCompilerPass/AddConfigurationBindingsCompilerPass.php -------------------------------------------------------------------------------- /Portal/ServiceContainerCompilerPass/AddHttpMiddlewareClientCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/ServiceContainerCompilerPass/AddHttpMiddlewareClientCompilerPass.php -------------------------------------------------------------------------------- /Portal/ServiceContainerCompilerPass/AddHttpMiddlewareCollectorCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/ServiceContainerCompilerPass/AddHttpMiddlewareCollectorCompilerPass.php -------------------------------------------------------------------------------- /Portal/ServiceContainerCompilerPass/AllDefinitionDefaultsCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/ServiceContainerCompilerPass/AllDefinitionDefaultsCompilerPass.php -------------------------------------------------------------------------------- /Portal/ServiceContainerCompilerPass/BuildDefinitionForFlowComponentRegistryCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/ServiceContainerCompilerPass/BuildDefinitionForFlowComponentRegistryCompilerPass.php -------------------------------------------------------------------------------- /Portal/ServiceContainerCompilerPass/RemoveAutoPrototypedDefinitionsCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/ServiceContainerCompilerPass/RemoveAutoPrototypedDefinitionsCompilerPass.php -------------------------------------------------------------------------------- /Portal/ServiceContainerCompilerPass/SetConfigurationAsParameterCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/ServiceContainerCompilerPass/SetConfigurationAsParameterCompilerPass.php -------------------------------------------------------------------------------- /Portal/Storage/Contract/PortalNodeStorageItemPackerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Storage/Contract/PortalNodeStorageItemPackerInterface.php -------------------------------------------------------------------------------- /Portal/Storage/Contract/PortalNodeStorageItemUnpackerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Storage/Contract/PortalNodeStorageItemUnpackerInterface.php -------------------------------------------------------------------------------- /Portal/Storage/PortalNodeStorageItemPacker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Storage/PortalNodeStorageItemPacker.php -------------------------------------------------------------------------------- /Portal/Storage/PortalNodeStorageItemUnpacker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Portal/Storage/PortalNodeStorageItemUnpacker.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/README.md -------------------------------------------------------------------------------- /Reception/Contract/PostProcessorContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/Contract/PostProcessorContract.php -------------------------------------------------------------------------------- /Reception/Contract/ReceiveContextFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/Contract/ReceiveContextFactoryInterface.php -------------------------------------------------------------------------------- /Reception/Contract/ReceiveServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/Contract/ReceiveServiceInterface.php -------------------------------------------------------------------------------- /Reception/Contract/ReceiverStackBuilderFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/Contract/ReceiverStackBuilderFactoryInterface.php -------------------------------------------------------------------------------- /Reception/Contract/ReceiverStackBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/Contract/ReceiverStackBuilderInterface.php -------------------------------------------------------------------------------- /Reception/Contract/ReceiverStackProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/Contract/ReceiverStackProcessorInterface.php -------------------------------------------------------------------------------- /Reception/Contract/ReceptionFlowReceiversFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/Contract/ReceptionFlowReceiversFactoryInterface.php -------------------------------------------------------------------------------- /Reception/LockingReceiver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/LockingReceiver.php -------------------------------------------------------------------------------- /Reception/PostProcessing/MarkAsFailedData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/PostProcessing/MarkAsFailedData.php -------------------------------------------------------------------------------- /Reception/PostProcessing/MarkAsFailedPostProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/PostProcessing/MarkAsFailedPostProcessor.php -------------------------------------------------------------------------------- /Reception/PostProcessing/SaveMappingsData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/PostProcessing/SaveMappingsData.php -------------------------------------------------------------------------------- /Reception/PostProcessing/SaveMappingsPostProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/PostProcessing/SaveMappingsPostProcessor.php -------------------------------------------------------------------------------- /Reception/ReceiveContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/ReceiveContext.php -------------------------------------------------------------------------------- /Reception/ReceiveContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/ReceiveContextFactory.php -------------------------------------------------------------------------------- /Reception/ReceiveService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/ReceiveService.php -------------------------------------------------------------------------------- /Reception/ReceiverCodeOriginFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/ReceiverCodeOriginFinder.php -------------------------------------------------------------------------------- /Reception/ReceiverStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/ReceiverStack.php -------------------------------------------------------------------------------- /Reception/ReceiverStackBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/ReceiverStackBuilder.php -------------------------------------------------------------------------------- /Reception/ReceiverStackBuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/ReceiverStackBuilderFactory.php -------------------------------------------------------------------------------- /Reception/ReceiverStackProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/ReceiverStackProcessor.php -------------------------------------------------------------------------------- /Reception/ReceptionFlowReceiversFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/ReceptionFlowReceiversFactory.php -------------------------------------------------------------------------------- /Reception/Support/LockAttachable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/Support/LockAttachable.php -------------------------------------------------------------------------------- /Reception/Support/PrimaryKeyChangesAttachable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Reception/Support/PrimaryKeyChangesAttachable.php -------------------------------------------------------------------------------- /StatusReporting/Contract/StatusReportingContextFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/StatusReporting/Contract/StatusReportingContextFactoryInterface.php -------------------------------------------------------------------------------- /StatusReporting/Contract/StatusReportingServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/StatusReporting/Contract/StatusReportingServiceInterface.php -------------------------------------------------------------------------------- /StatusReporting/StatusReporterCodeOriginFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/StatusReporting/StatusReporterCodeOriginFinder.php -------------------------------------------------------------------------------- /StatusReporting/StatusReportingContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/StatusReporting/StatusReportingContext.php -------------------------------------------------------------------------------- /StatusReporting/StatusReportingContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/StatusReporting/StatusReportingContextFactory.php -------------------------------------------------------------------------------- /StatusReporting/StatusReportingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/StatusReporting/StatusReportingService.php -------------------------------------------------------------------------------- /Storage/Contract/RequestStorageContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Contract/RequestStorageContract.php -------------------------------------------------------------------------------- /Storage/Contract/StreamPathContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Contract/StreamPathContract.php -------------------------------------------------------------------------------- /Storage/Exception/GzipCompressException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Exception/GzipCompressException.php -------------------------------------------------------------------------------- /Storage/Filesystem/AbstractFilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Filesystem/AbstractFilesystem.php -------------------------------------------------------------------------------- /Storage/Filesystem/FilesystemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Filesystem/FilesystemFactory.php -------------------------------------------------------------------------------- /Storage/Filesystem/PrefixAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Filesystem/PrefixAdapter.php -------------------------------------------------------------------------------- /Storage/Filesystem/PrefixFilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Filesystem/PrefixFilesystem.php -------------------------------------------------------------------------------- /Storage/NormalizationRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/NormalizationRegistry.php -------------------------------------------------------------------------------- /Storage/Normalizer/Psr7RequestDenormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/Psr7RequestDenormalizer.php -------------------------------------------------------------------------------- /Storage/Normalizer/Psr7RequestNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/Psr7RequestNormalizer.php -------------------------------------------------------------------------------- /Storage/Normalizer/ScalarDenormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/ScalarDenormalizer.php -------------------------------------------------------------------------------- /Storage/Normalizer/ScalarNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/ScalarNormalizer.php -------------------------------------------------------------------------------- /Storage/Normalizer/SerializableCompressDenormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/SerializableCompressDenormalizer.php -------------------------------------------------------------------------------- /Storage/Normalizer/SerializableCompressNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/SerializableCompressNormalizer.php -------------------------------------------------------------------------------- /Storage/Normalizer/SerializableDenormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/SerializableDenormalizer.php -------------------------------------------------------------------------------- /Storage/Normalizer/SerializableNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/SerializableNormalizer.php -------------------------------------------------------------------------------- /Storage/Normalizer/StreamDenormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/StreamDenormalizer.php -------------------------------------------------------------------------------- /Storage/Normalizer/StreamNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/Normalizer/StreamNormalizer.php -------------------------------------------------------------------------------- /Storage/PrimaryKeyToEntityHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/PrimaryKeyToEntityHydrator.php -------------------------------------------------------------------------------- /Storage/RequestStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Storage/RequestStorage.php -------------------------------------------------------------------------------- /Support/EntityStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Support/EntityStatus.php -------------------------------------------------------------------------------- /Support/HttpMiddlewareCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Support/HttpMiddlewareCollector.php -------------------------------------------------------------------------------- /Ui/Admin/Action/Context/UiActionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/Context/UiActionContext.php -------------------------------------------------------------------------------- /Ui/Admin/Action/Context/UiActionContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/Context/UiActionContextFactory.php -------------------------------------------------------------------------------- /Ui/Admin/Action/JobRunUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/JobRunUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/JobScheduleUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/JobScheduleUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalEntityListUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalEntityListUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeAddUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeAddUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeConfigurationGetUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeConfigurationGetUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeConfigurationRenderUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeConfigurationRenderUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeEntityListUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeEntityListUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeExtensionActivateUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeExtensionActivateUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeExtensionBrowseUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeExtensionBrowseUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeExtensionDeactivateUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeExtensionDeactivateUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeRemoveUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeRemoveUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeStatusReportUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeStatusReportUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/PortalNodeStorageGetUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/PortalNodeStorageGetUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/RouteAddUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/RouteAddUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/RouteAddUiDefault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/RouteAddUiDefault.php -------------------------------------------------------------------------------- /Ui/Admin/Action/RouteBrowseUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/RouteBrowseUi.php -------------------------------------------------------------------------------- /Ui/Admin/Action/RouteRemoveUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Action/RouteRemoveUi.php -------------------------------------------------------------------------------- /Ui/Admin/Audit/AuditTrail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Audit/AuditTrail.php -------------------------------------------------------------------------------- /Ui/Admin/Audit/AuditTrailFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Audit/AuditTrailFactory.php -------------------------------------------------------------------------------- /Ui/Admin/Audit/AuditableDataSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Audit/AuditableDataSerializer.php -------------------------------------------------------------------------------- /Ui/Admin/Audit/Contract/AuditTrailFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Audit/Contract/AuditTrailFactoryInterface.php -------------------------------------------------------------------------------- /Ui/Admin/Audit/Contract/AuditTrailInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Audit/Contract/AuditTrailInterface.php -------------------------------------------------------------------------------- /Ui/Admin/Audit/Contract/AuditableDataSerializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Audit/Contract/AuditableDataSerializerInterface.php -------------------------------------------------------------------------------- /Ui/Admin/Audit/NullAuditTrail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Audit/NullAuditTrail.php -------------------------------------------------------------------------------- /Ui/Admin/Support/Contract/PortalNodeExistenceSeparatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Support/Contract/PortalNodeExistenceSeparatorInterface.php -------------------------------------------------------------------------------- /Ui/Admin/Support/PortalNodeAliasResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Support/PortalNodeAliasResolver.php -------------------------------------------------------------------------------- /Ui/Admin/Support/PortalNodeExistenceSeparationResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Support/PortalNodeExistenceSeparationResult.php -------------------------------------------------------------------------------- /Ui/Admin/Support/PortalNodeExistenceSeparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Support/PortalNodeExistenceSeparator.php -------------------------------------------------------------------------------- /Ui/Admin/Support/StorageKeyAccessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Ui/Admin/Support/StorageKeyAccessor.php -------------------------------------------------------------------------------- /Web/Http/Contract/HttpHandleContextFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Contract/HttpHandleContextFactoryInterface.php -------------------------------------------------------------------------------- /Web/Http/Contract/HttpHandleFlowHttpHandlersFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Contract/HttpHandleFlowHttpHandlersFactoryInterface.php -------------------------------------------------------------------------------- /Web/Http/Contract/HttpHandleServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Contract/HttpHandleServiceInterface.php -------------------------------------------------------------------------------- /Web/Http/Contract/HttpHandlerStackBuilderFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Contract/HttpHandlerStackBuilderFactoryInterface.php -------------------------------------------------------------------------------- /Web/Http/Contract/HttpHandlerStackBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Contract/HttpHandlerStackBuilderInterface.php -------------------------------------------------------------------------------- /Web/Http/Contract/HttpHandlerStackProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Contract/HttpHandlerStackProcessorInterface.php -------------------------------------------------------------------------------- /Web/Http/Contract/HttpHandlerUrlProviderFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Contract/HttpHandlerUrlProviderFactoryInterface.php -------------------------------------------------------------------------------- /Web/Http/Contract/RequestDeserializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Contract/RequestDeserializerInterface.php -------------------------------------------------------------------------------- /Web/Http/Contract/RequestSerializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Contract/RequestSerializerInterface.php -------------------------------------------------------------------------------- /Web/Http/Dump/Contract/ServerRequestCycleDumpCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Dump/Contract/ServerRequestCycleDumpCheckerInterface.php -------------------------------------------------------------------------------- /Web/Http/Dump/Contract/ServerRequestCycleDumperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Dump/Contract/ServerRequestCycleDumperInterface.php -------------------------------------------------------------------------------- /Web/Http/Dump/SampleRateServerRequestCycleDumpChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Dump/SampleRateServerRequestCycleDumpChecker.php -------------------------------------------------------------------------------- /Web/Http/Dump/ServerRequestCycleDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Dump/ServerRequestCycleDumper.php -------------------------------------------------------------------------------- /Web/Http/Exception/RequestDeserializationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Exception/RequestDeserializationException.php -------------------------------------------------------------------------------- /Web/Http/Exception/RequestSerializationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Exception/RequestSerializationException.php -------------------------------------------------------------------------------- /Web/Http/Formatter/Psr7MessageCurlShellFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Formatter/Psr7MessageCurlShellFormatter.php -------------------------------------------------------------------------------- /Web/Http/Formatter/Psr7MessageRawHttpFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Formatter/Psr7MessageRawHttpFormatter.php -------------------------------------------------------------------------------- /Web/Http/Formatter/Support/Contract/HeaderUtilityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Formatter/Support/Contract/HeaderUtilityInterface.php -------------------------------------------------------------------------------- /Web/Http/Formatter/Support/HeaderUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Formatter/Support/HeaderUtility.php -------------------------------------------------------------------------------- /Web/Http/Handler/HttpMiddlewareChainHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Handler/HttpMiddlewareChainHandler.php -------------------------------------------------------------------------------- /Web/Http/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpClient.php -------------------------------------------------------------------------------- /Web/Http/HttpHandleContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpHandleContext.php -------------------------------------------------------------------------------- /Web/Http/HttpHandleContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpHandleContextFactory.php -------------------------------------------------------------------------------- /Web/Http/HttpHandleFlowHttpHandlersFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpHandleFlowHttpHandlersFactory.php -------------------------------------------------------------------------------- /Web/Http/HttpHandleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpHandleService.php -------------------------------------------------------------------------------- /Web/Http/HttpHandlerCodeOriginFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpHandlerCodeOriginFinder.php -------------------------------------------------------------------------------- /Web/Http/HttpHandlerStackBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpHandlerStackBuilder.php -------------------------------------------------------------------------------- /Web/Http/HttpHandlerStackBuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpHandlerStackBuilderFactory.php -------------------------------------------------------------------------------- /Web/Http/HttpHandlerStackProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpHandlerStackProcessor.php -------------------------------------------------------------------------------- /Web/Http/HttpKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpKernel.php -------------------------------------------------------------------------------- /Web/Http/HttpMiddlewareClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpMiddlewareClient.php -------------------------------------------------------------------------------- /Web/Http/HttpMiddlewareHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/HttpMiddlewareHandler.php -------------------------------------------------------------------------------- /Web/Http/Psr7MessageMultiPartFormDataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/Psr7MessageMultiPartFormDataBuilder.php -------------------------------------------------------------------------------- /Web/Http/RequestDeserializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/RequestDeserializer.php -------------------------------------------------------------------------------- /Web/Http/RequestSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/Web/Http/RequestSerializer.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HEPTACOM/heptaconnect-core/HEAD/composer.json --------------------------------------------------------------------------------