-
Notifications
You must be signed in to change notification settings - Fork 8
/
metadata.php
39 lines (36 loc) · 1.17 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
<?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_storefront',
'title' => 'GraphQL Storefront',
'description' => 'OXID GraphQL Storefront',
'thumbnail' => 'logo.png',
'version' => '4.0.0',
'author' => 'OXID eSales',
'url' => 'https://github.com/OXID-eSales/graphql-storefront-module',
'email' => '[email protected]',
'extend' => [
\OxidEsales\Eshop\Application\Model\User::class => \OxidEsales\GraphQL\Storefront\Shared\Shop\User::class,
\OxidEsales\Eshop\Application\Model\Basket::class => \OxidEsales\GraphQL\Storefront\Shared\Shop\Basket::class,
\OxidEsales\Eshop\Application\Model\Voucher::class => \OxidEsales\GraphQL\Storefront\Shared\Shop\Voucher::class,
\OxidEsales\Eshop\Core\Language::class => \OxidEsales\GraphQL\Storefront\Shared\Shop\Language::class,
],
'controllers' => [
],
'templates' => [
],
'blocks' => [
],
'settings' => [
],
];