forked from OXID-eSales/graphql-example-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
40 lines (38 loc) · 876 Bytes
/
metadata.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = [
'id' => 'oe/graphql-example',
'title' => [
'de' => 'GraphQL Example',
'en' => 'GraphQL Example',
],
'description' => [
'de' => '<span>OXID GraphQL API Framework</span>',
'en' => '<span>OXID GraphQL API Framework</span>',
],
'thumbnail' => 'out/pictures/logo.png',
'version' => '1.1.0',
'author' => 'OXID eSales',
'url' => 'www.oxid-esales.com',
'email' => '[email protected]',
'extend' => [
],
'controllers' => [
],
'templates' => [
],
'blocks' => [
],
'settings' => [
],
];