From 6424603f4e3f9c7c69ac488bba87114c8a5e33b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Ru=C5=BEevi=C4=87?= Date: Mon, 6 May 2024 15:30:54 +0200 Subject: [PATCH] adding fixes for wrong file name (#399) --- src/Cache/ManifestCacheExample.php | 2 +- src/Cli/AbstractCli.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cache/ManifestCacheExample.php b/src/Cache/ManifestCacheExample.php index 5a4033a2c..138b6983b 100644 --- a/src/Cache/ManifestCacheExample.php +++ b/src/Cache/ManifestCacheExample.php @@ -16,7 +16,7 @@ /** * The project config class. */ -class ManifestCache extends AbstractManifestCache +class ManifestCacheExample extends AbstractManifestCache { /** * Get cache name. diff --git a/src/Cli/AbstractCli.php b/src/Cli/AbstractCli.php index 13b79a344..a07272145 100644 --- a/src/Cli/AbstractCli.php +++ b/src/Cli/AbstractCli.php @@ -772,7 +772,7 @@ public function getVendorPrefix(array $args = []): string if (empty($vendorPrefix)) { $composer = $this->getComposer($args); - $vendorPrefix = $composer['extra']['imposter']['namespace'] ?? 'EightshiftLibs'; + $vendorPrefix = $composer['extra']['strauss']['namespace_prefix'] ?? 'EightshiftLibs'; } return $vendorPrefix;