forked from OXID-eSales/graphql-base-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
55 lines (51 loc) · 1.35 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/
declare(strict_types=1);
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = [
'id' => 'oe_graphql_base',
'title' => [
'de' => 'GraphQL Base',
'en' => 'GraphQL Base',
],
'description' => [
'de' => '<span>OXID GraphQL API Framework</span>',
'en' => '<span>OXID GraphQL API Framework</span>',
],
'thumbnail' => 'out/pictures/logo.png',
'version' => '5.2.0',
'author' => 'OXID eSales',
'url' => 'www.oxid-esales.com',
'email' => '[email protected]',
'extend' => [
],
'controllers' => [
// Widget Controller
'graphql' => OxidEsales\GraphQL\Base\Component\Widget\GraphQL::class,
],
'templates' => [
],
'blocks' => [
],
'settings' => [
[
'group' => 'graphql_base',
'name' => 'sJsonWebTokenSignature',
'type' => 'str',
'value' => 'CHANGE ME',
],
],
'events' => [
'onActivate' => '\OxidEsales\GraphQL\Base\Framework\ModuleSetup::onActivate',
'onDeactivate' => '\OxidEsales\GraphQL\Base\Framework\ModuleSetup::onDeactivate',
],
];