Skip to content

Commit 57f89bb

Browse files
committed
Update deps
1 parent 43d6d79 commit 57f89bb

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
**Manage EAV attributes from the Magento Admin Panel**
44

55
## Installation
6-
Install this package via composer (assuming you have setup the `composer.yireo.com` repository correctly already):
6+
Install this package via composer:
77
```bash
88
composer require yireo/magento2-eav-attribute-manager
99
```
1010

1111
Next, enable this module:
1212
```bash
13-
bin/magento module:enable Yireo_EavAttributeManager
13+
bin/magento module:enable Yireo_EavAttributeManager Loki_AdminComponents Loki_nComponents
1414
```
1515

1616
## Usage

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
"description": "N/A",
55
"type": "magento2-module",
66
"require": {
7-
"magento/framework": "*"
7+
"loki/magento2-components": "^2.0",
8+
"loki/magento2-admin-components": "0.* | ^1.0",
9+
"magento/module-backend": "^102.0",
10+
"magento/module-eav": "^102.0",
11+
"magento/framework": "^103.0"
812
},
913
"license": [
1014
"OSL-3.0"

etc/module.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?xml version="1.0"?>
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
3-
<module name="Yireo_EavAttributeManager"/>
3+
<module name="Yireo_EavAttributeManager">
4+
<sequence>
5+
<module name="Loki_AdminComponents"/>
6+
<module name="Loki_Components"/>
7+
<module name="Magento_Backend"/>
8+
<module name="Magento_Eav"/>
9+
</sequence>
10+
</module>
411
</config>

0 commit comments

Comments
 (0)