This commit is contained in:
Thomas Dartsch 2024-07-19 18:13:56 +02:00
parent a54568abad
commit a40fee4819
2 changed files with 6 additions and 6 deletions

View File

@ -13,12 +13,12 @@ $sMetadataVersion = '2.0';
* Module information * Module information
*/ */
$aModule = [ $aModule = [
'id' => '__PackageFull__', 'id' => 'graphql-module-skeleton',
'title' => 'GraphQL __Package__', 'title' => 'GraphQL module skeleton',
'description' => '', 'description' => '',
'thumbnail' => 'out/pictures/logo.png', 'thumbnail' => 'out/pictures/logo.png',
'version' => '0.0.1', 'version' => '0.0.1',
'author' => '__Vendor__', 'author' => 'OxidEsales',
'url' => '', 'url' => '',
'email' => '', 'email' => '',
'extend' => [ 'extend' => [

View File

@ -4,11 +4,11 @@ services:
public: false public: false
autowire: true autowire: true
__Vendor__\GraphQL\__Package__\: OxidEsales\GraphQL\Skeleton\:
resource: 'src/*' resource: 'src/*'
exclude: 'src/**/{DataType,Exception,Infrastructure}' exclude: 'src/**/{DataType,Exception,Infrastructure}'
public: true public: true
__Vendor__\GraphQL\__Package__\Shared\Service\NamespaceMapper: OxidEsales\GraphQL\Skeleton\Shared\Service\NamespaceMapper:
class: __Vendor__\GraphQL\__Package__\Shared\Service\NamespaceMapper class: OxidEsales\GraphQL\Skeleton\Shared\Service\NamespaceMapper
tags: ['graphql_namespace_mapper'] tags: ['graphql_namespace_mapper']