-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (39 loc) · 851 Bytes
/
composer.json
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
{
"name": "magentomodules/pricecontrol",
"description": "A Magento 2 module for controlling product price changes with approval process.",
"require": {
"php": "^8.0",
"magento/magento-composer-installer": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"suggest": {
},
"type": "magento2-module",
"version": "0.1.0",
"license": [
"MIT"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MagentoModules\\PriceControl\\": ""
}
},
"autoload-dev": {
"psr-4": {
"MagentoModules\\PriceControl\\Test\\": "Test/"
}
},
"extra": {
"map": [
[
"*",
"MagentoModules/PriceControl"
]
]
}
}