-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.63 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.63 KB
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
56
57
58
59
60
61
{
"name": "magedin/module-view-product-page",
"description": "This module enables the shopper to view the product page in the front store by clicking one button on the admin product edit page.",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MagedIn\\ViewProductPage\\": ""
}
},
"require": {
"php": "^7.4||^8.0",
"magento/framework": "*"
},
"require-dev": {
"magedin/magento2-develop-tools": "~1.0.0"
},
"type": "magento2-module",
"config": {
"sort-packages": true
},
"license": [
"proprietary"
],
"authors": [
{
"name": "MagedIn Technology",
"email": "support@magedin.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "composer",
"url": "https://magedin.repo.repman.io"
}
],
"scripts": {
"coding-standard": [
"@phpcs",
"@phpmd"
],
"tests": [
"@coding-standard",
"@phpunit"
],
"phpunit": "vendor/bin/phpunit Test",
"phpcs-configure": [
"vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard"
],
"phpcs": [
"@phpcs-configure",
"vendor/bin/phpcs --standard=Magento2 --severity=1 --extensions=php Console Model Test"
],
"phpmd": "vendor/bin/phpmd Block/ text cleancode,codesize,controversial,design,naming,unusedcode"
}
}