From a40fee48195f353f32e557f89e8df2f0673102fb Mon Sep 17 00:00:00 2001 From: ThomasDartsch Date: Fri, 19 Jul 2024 18:13:56 +0200 Subject: [PATCH] add ids --- metadata.php | 6 +++--- services.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/metadata.php b/metadata.php index c0f3141..56ffc49 100644 --- a/metadata.php +++ b/metadata.php @@ -13,12 +13,12 @@ $sMetadataVersion = '2.0'; * Module information */ $aModule = [ - 'id' => '__PackageFull__', - 'title' => 'GraphQL __Package__', + 'id' => 'graphql-module-skeleton', + 'title' => 'GraphQL module skeleton', 'description' => '', 'thumbnail' => 'out/pictures/logo.png', 'version' => '0.0.1', - 'author' => '__Vendor__', + 'author' => 'OxidEsales', 'url' => '', 'email' => '', 'extend' => [ diff --git a/services.yaml b/services.yaml index 52c38be..1ffadbb 100644 --- a/services.yaml +++ b/services.yaml @@ -4,11 +4,11 @@ services: public: false autowire: true - __Vendor__\GraphQL\__Package__\: + OxidEsales\GraphQL\Skeleton\: resource: 'src/*' exclude: 'src/**/{DataType,Exception,Infrastructure}' public: true - __Vendor__\GraphQL\__Package__\Shared\Service\NamespaceMapper: - class: __Vendor__\GraphQL\__Package__\Shared\Service\NamespaceMapper + OxidEsales\GraphQL\Skeleton\Shared\Service\NamespaceMapper: + class: OxidEsales\GraphQL\Skeleton\Shared\Service\NamespaceMapper tags: ['graphql_namespace_mapper']