35 lines
644 B
PHP
35 lines
644 B
PHP
<?php
|
|
/**
|
|
* Copyright © OXID eSales AG. All rights reserved.
|
|
* See LICENSE file for license details.
|
|
*/
|
|
|
|
/**
|
|
* Metadata version
|
|
*/
|
|
$sMetadataVersion = '2.0';
|
|
|
|
/**
|
|
* Module information
|
|
*/
|
|
$aModule = [
|
|
'id' => 'graphql-module-skeleton',
|
|
'title' => 'GraphQL module skeleton',
|
|
'description' => '',
|
|
'thumbnail' => 'out/pictures/logo.png',
|
|
'version' => '0.0.1',
|
|
'author' => 'OxidEsales',
|
|
'url' => '',
|
|
'email' => '',
|
|
'extend' => [
|
|
],
|
|
'controllers' => [
|
|
],
|
|
'templates' => [
|
|
],
|
|
'blocks' => [
|
|
],
|
|
'settings' => [
|
|
],
|
|
];
|