Skip to content

Commit

Permalink
[PluginTemporal] Prepare for 2.x:
Browse files Browse the repository at this point in the history
- Moved all classes to root folder;
  • Loading branch information
OleksiiBulba committed Aug 5, 2023
1 parent 34342fc commit 69cf720
Show file tree
Hide file tree
Showing 35 changed files with 12 additions and 16 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Micro\Plugin\Temporal\Configuration\Client;

use Micro\Framework\Kernel\Configuration\PluginRoutingKeyConfiguration;
use Micro\Framework\BootConfiguration\Configuration\PluginRoutingKeyConfiguration;

class
WorkflowClientConfiguration extends PluginRoutingKeyConfiguration implements WorkflowClientConfigurationInterface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Micro\Plugin\Temporal\Configuration\RoadRunner;

use JetBrains\PhpStorm\ExpectedValues;
use Micro\Framework\Kernel\Configuration\PluginRoutingKeyConfiguration;
use Micro\Framework\BootConfiguration\Configuration\PluginRoutingKeyConfiguration;
use Spiral\RoadRunner\Environment\Mode;

class RoadRunnerConfiguration extends PluginRoutingKeyConfiguration implements RoadRunnerConfigurationInterface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Micro\Plugin\Temporal\Configuration\Worker;

use JetBrains\PhpStorm\ExpectedValues;
use Micro\Framework\Kernel\Configuration\PluginRoutingKeyConfiguration;
use Micro\Framework\BootConfiguration\Configuration\PluginRoutingKeyConfiguration;
use Spiral\RoadRunner\Environment\Mode;
use Temporal\Worker\WorkerFactoryInterface as TemporalWorkerFactoryInterface;

Expand Down
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/TemporalPlugin.php → TemporalPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

use Micro\Component\DependencyInjection\Autowire\AutowireHelperFactory;
use Micro\Component\DependencyInjection\Autowire\AutowireHelperFactoryInterface;
use Micro\Component\DependencyInjection\Container;
use Micro\Framework\Kernel\Plugin\ConfigurableInterface;
use Micro\Framework\Kernel\Plugin\DependencyProviderInterface;
use Micro\Framework\Kernel\Plugin\PluginConfigurationTrait;
use Micro\Framework\DependencyInjection\Container;
use Micro\Framework\BootConfiguration\Plugin\ConfigurableInterface;
use Micro\Framework\BootDependency\Plugin\DependencyProviderInterface;
use Micro\Framework\BootConfiguration\Plugin\PluginConfigurationTrait;
use Micro\Library\DTO\SerializerFacadeInterface;
use Micro\Plugin\Locator\Facade\LocatorFacadeInterface;
use Micro\Plugin\Temporal\Activity\Factory\ActivityStubFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Micro\Plugin\Temporal;

use Micro\Framework\Kernel\Configuration\PluginConfiguration;
use Micro\Framework\BootConfiguration\Configuration\PluginConfiguration;
use Micro\Plugin\Temporal\Configuration\Client\WorkflowClientConfiguration;
use Micro\Plugin\Temporal\Configuration\Client\WorkflowClientConfigurationInterface;
use Micro\Plugin\Temporal\Configuration\RoadRunner\RoadRunnerConfiguration;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 4 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"name": "micro/plugin-temporal",
"description": "Micro Framework: TemporalIO plugin",
"type": "library",
"type": "micro-library",
"license": "MIT",
"version": "1.0",
"autoload": {
"psr-4": {
"Micro\\Plugin\\Temporal\\": "src/"
"Micro\\Plugin\\Temporal\\": "/"
}
},
"authors": [
Expand All @@ -16,12 +15,9 @@
}
],
"require": {
"micro/kernel": "^1",
"micro/kernel": "^2.0",
"temporal/sdk": ">=2.0",
"spiral/tokenizer": ">=2.7"
},
"require-dev": {
},
"scripts": {
}
"minimum-stability": "dev"
}

0 comments on commit 69cf720

Please sign in to comment.