diff --git a/src/Service/ServiceProvider.php b/src/Service/ServiceProvider.php new file mode 100644 index 0000000..df9c4b4 --- /dev/null +++ b/src/Service/ServiceProvider.php @@ -0,0 +1,32 @@ +alias(Workspace::class, WorkspaceInterface::class); + $container->factory(WorkspaceInterface::class, WorkspaceFactory::class); + $container->factory(Application::class, ApplicationFactory::class); + $container->factory(Configuration::class, ConfigurationFactory::class); + } +}