Skip to content

Commit

Permalink
Renamed library
Browse files Browse the repository at this point in the history
  • Loading branch information
CrochetFeve0251 committed Apr 7, 2023
1 parent 79c9133 commit d448d68
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crochetfeve0251/rocket-launcher-action-scheduler-take-off",
"description": "Initialisation library for psr4 plugin",
"name": "wp-launchpad/action-scheduler-take-off",
"description": "Initialisation library for Action Scheduler from Launchpad framework",
"minimum-stability": "stable",
"license": "proprietary",
"type": "library",
Expand All @@ -11,7 +11,7 @@
}
],
"require": {
"crochetfeve0251/rocket-launcher-builder": "1.0.*",
"wp-launchpad/cli": "1.0.*",
"woocommerce/action-scheduler": "^3.4",
"ext-json": "*"
},
Expand All @@ -21,22 +21,22 @@
},
"autoload": {
"psr-4": {
"RocketLauncherActionSchedulerTakeOff\\": "inc/"
"LaunchpadActionSchedulerTakeOff\\": "inc/"
}
},
"autoload-dev": {
"psr-4": {
"RocketLauncherActionSchedulerTakeOff\\Tests\\": "tests/"
"LaunchpadActionSchedulerTakeOff\\Tests\\": "tests/"
}
},
"extra": {
"rocket-launcher": {
"provider" : "RocketLauncherActionSchedulerTakeOff\\ServiceProvider",
"launchpad": {
"provider" : "LaunchpadActionSchedulerTakeOff\\ServiceProvider",
"command": "action-scheduler:initialize",
"install": true,
"clean": true,
"libraries" : {
"crochetfeve0251/rocket-launcher-action-scheduler": "^0.0.1"
"wp-launchpad/action-scheduler": "^0.0.2"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions inc/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace RocketLauncherActionSchedulerTakeOff\Commands;
namespace LaunchpadActionSchedulerTakeOff\Commands;

use RocketLauncherActionSchedulerTakeOff\Services\BootManager;
use RocketLauncherActionSchedulerTakeOff\Services\PluginManager;
use RocketLauncherBuilder\Commands\Command;
use LaunchpadActionSchedulerTakeOff\Services\BootManager;
use LaunchpadActionSchedulerTakeOff\Services\PluginManager;
use LaunchpadCLI\Commands\Command;

class InstallCommand extends Command
{
Expand Down
14 changes: 7 additions & 7 deletions inc/ServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

namespace RocketLauncherActionSchedulerTakeOff;
namespace LaunchpadActionSchedulerTakeOff;

use League\Flysystem\Filesystem;
use RocketLauncherActionSchedulerTakeOff\Commands\InstallCommand;
use RocketLauncherActionSchedulerTakeOff\Services\BootManager;
use RocketLauncherActionSchedulerTakeOff\Services\PluginManager;
use RocketLauncherBuilder\App;
use RocketLauncherBuilder\Entities\Configurations;
use RocketLauncherBuilder\ServiceProviders\ServiceProviderInterface;
use LaunchpadActionSchedulerTakeOff\Commands\InstallCommand;
use LaunchpadActionSchedulerTakeOff\Services\BootManager;
use LaunchpadActionSchedulerTakeOff\Services\PluginManager;
use LaunchpadCLI\App;
use LaunchpadCLI\Entities\Configurations;
use LaunchpadCLI\ServiceProviders\ServiceProviderInterface;

class ServiceProvider implements ServiceProviderInterface
{
Expand Down
4 changes: 2 additions & 2 deletions inc/Services/BootManager.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace RocketLauncherActionSchedulerTakeOff\Services;
namespace LaunchpadActionSchedulerTakeOff\Services;

use League\Flysystem\Filesystem;
use RocketLauncherBuilder\Entities\Configurations;
use LaunchpadCLI\Entities\Configurations;

class BootManager
{
Expand Down
2 changes: 1 addition & 1 deletion inc/Services/PluginManager.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace RocketLauncherActionSchedulerTakeOff\Services;
namespace LaunchpadActionSchedulerTakeOff\Services;

use League\Flysystem\Filesystem;

Expand Down

0 comments on commit d448d68

Please sign in to comment.