Skip to content

Commit

Permalink
Keep using the hosting config key
Browse files Browse the repository at this point in the history
  • Loading branch information
apfelbox committed Oct 24, 2024
1 parent 66edf1e commit b5a21e7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
4.0.1
=====

* (bug) Keep using the `hosting` config key.


4.0.0
=====

Expand Down
1 change: 0 additions & 1 deletion UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* Command `hosting:run-tasks:post-deploy` was removed, use `hosting:hook:deploy` instead.
* Interface `PostBuildTaskInterface` was removed, use `BuildHookInterface` instead.
* Interface `PostDeploymentTaskInterface` was removed, use `DeployHookInterface` instead.
* The config key was changed to `21torr_hosting` (from `hosting`).


2.x to 3.0
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/HostingBundleConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ final class HostingBundleConfiguration implements ConfigurationInterface
#[\Override]
public function getConfigTreeBuilder () : TreeBuilder
{
$treeBuilder = new TreeBuilder("21torr_hosting");
$treeBuilder = new TreeBuilder("hosting");

$treeBuilder->getRootNode()
->children()
Expand Down
1 change: 0 additions & 1 deletion src/HostingBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ static function (array $config, ContainerBuilder $container) : void
->setArgument('$tier', $config["tier"])
->setArgument('$installationKey', $config["installation"]);
},
"21torr_hosting",
);
}

Expand Down

0 comments on commit b5a21e7

Please sign in to comment.