Skip to content

Commit 066b903

Browse files
committed
Fix static tests failures
1 parent a8e1c1a commit 066b903

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Magento_PageBuilderImageAttribute module
2+
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "magento/module-page-builder-image-attribute",
3+
"description": "Width & Height attribute - Pagebuilder image",
4+
"config": {
5+
"sort-packages": true
6+
},
7+
"require": {
8+
"magento/module-page-builder-analytics": "*",
9+
"magento/module-catalog": "*",
10+
"magento/framework": "*",
11+
"php": "~8.1.0||~8.2.0||~8.3.0"
12+
},
13+
"type": "magento2-module",
14+
"license": [
15+
"proprietary"
16+
],
17+
"autoload": {
18+
"files": [
19+
"registration.php"
20+
],
21+
"psr-4": {
22+
"Magento\\PageBuilderImageAttribute\\": ""
23+
}
24+
}
25+
}

app/code/Magento/PageBuilderImageAttribute/etc/module.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" ?>
22
<!--
33
/**
4+
* Copyright © Magento, Inc. All rights reserved.
45
* Changes by: Ajay Prajapati
56
*/
67
-->
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?php
22
/**
3+
* Copyright © Magento, Inc. All rights reserved.
34
* Changes by: Ajay Prajapati
45
*/
56

67
use Magento\Framework\Component\ComponentRegistrar;
78

8-
ComponentRegistrar::register(ComponentRegistrar::MODULE, 'Magento_PageBuilderImageAttribute', __DIR__);
9+
ComponentRegistrar::register(ComponentRegistrar::MODULE, 'Magento_PageBuilderImageAttribute', __DIR__);

0 commit comments

Comments
 (0)