├── LICENSE ├── README.md ├── composer.json └── src ├── Attribute └── AssignWorker.php ├── Bootloader ├── PrototypeBootloader.php ├── ScaffolderBootloader.php └── TemporalBridgeBootloader.php ├── Commands ├── InfoCommand.php └── Scaffolder │ ├── ActivityCommand.php │ └── WorkflowCommand.php ├── Config ├── ClientConfig.php ├── ConnectionConfig.php ├── TemporalConfig.php └── TlsConfig.php ├── Declaration ├── DeclarationDto.php └── DeclarationType.php ├── DeclarationLocator.php ├── DeclarationLocatorInterface.php ├── DeclarationRegistryInterface.php ├── DeclarationWorkerResolver.php ├── Dispatcher.php ├── Exception ├── TemporalBridgeException.php └── WorkersRegistryException.php ├── Scaffolder └── Declaration │ ├── ActivityDeclaration.php │ └── WorkflowDeclaration.php ├── WorkerFactory.php ├── WorkerFactoryInterface.php ├── WorkersRegistry.php └── WorkersRegistryInterface.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/composer.json -------------------------------------------------------------------------------- /src/Attribute/AssignWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Attribute/AssignWorker.php -------------------------------------------------------------------------------- /src/Bootloader/PrototypeBootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Bootloader/PrototypeBootloader.php -------------------------------------------------------------------------------- /src/Bootloader/ScaffolderBootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Bootloader/ScaffolderBootloader.php -------------------------------------------------------------------------------- /src/Bootloader/TemporalBridgeBootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Bootloader/TemporalBridgeBootloader.php -------------------------------------------------------------------------------- /src/Commands/InfoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Commands/InfoCommand.php -------------------------------------------------------------------------------- /src/Commands/Scaffolder/ActivityCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Commands/Scaffolder/ActivityCommand.php -------------------------------------------------------------------------------- /src/Commands/Scaffolder/WorkflowCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Commands/Scaffolder/WorkflowCommand.php -------------------------------------------------------------------------------- /src/Config/ClientConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Config/ClientConfig.php -------------------------------------------------------------------------------- /src/Config/ConnectionConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Config/ConnectionConfig.php -------------------------------------------------------------------------------- /src/Config/TemporalConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Config/TemporalConfig.php -------------------------------------------------------------------------------- /src/Config/TlsConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Config/TlsConfig.php -------------------------------------------------------------------------------- /src/Declaration/DeclarationDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Declaration/DeclarationDto.php -------------------------------------------------------------------------------- /src/Declaration/DeclarationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Declaration/DeclarationType.php -------------------------------------------------------------------------------- /src/DeclarationLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/DeclarationLocator.php -------------------------------------------------------------------------------- /src/DeclarationLocatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/DeclarationLocatorInterface.php -------------------------------------------------------------------------------- /src/DeclarationRegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/DeclarationRegistryInterface.php -------------------------------------------------------------------------------- /src/DeclarationWorkerResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/DeclarationWorkerResolver.php -------------------------------------------------------------------------------- /src/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Dispatcher.php -------------------------------------------------------------------------------- /src/Exception/TemporalBridgeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Exception/TemporalBridgeException.php -------------------------------------------------------------------------------- /src/Exception/WorkersRegistryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Exception/WorkersRegistryException.php -------------------------------------------------------------------------------- /src/Scaffolder/Declaration/ActivityDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Scaffolder/Declaration/ActivityDeclaration.php -------------------------------------------------------------------------------- /src/Scaffolder/Declaration/WorkflowDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/Scaffolder/Declaration/WorkflowDeclaration.php -------------------------------------------------------------------------------- /src/WorkerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/WorkerFactory.php -------------------------------------------------------------------------------- /src/WorkerFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/WorkerFactoryInterface.php -------------------------------------------------------------------------------- /src/WorkersRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/WorkersRegistry.php -------------------------------------------------------------------------------- /src/WorkersRegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/temporal-bridge/HEAD/src/WorkersRegistryInterface.php --------------------------------------------------------------------------------