forked from magesuite/seo-meta-robots
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.51 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "visma/module-seo-meta-robots",
"description": "Extension allows control over robots meta tag",
"type": "magento2-module",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"require": {
"magento/framework": "^102||^103",
"magento/module-catalog": "^103||^104",
"magento/module-cms": "^103||^104",
"magento/module-eav": "^102",
"magento/module-store": "^101",
"php": "^7.1 || ^8.1"
},
"require-dev": {
"magento/magento-coding-standard": "^4",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3",
"dealerdirect/phpcodesniffer-composer-installer":"^0.7",
"vimeo/psalm": "^4",
"phpmd/phpmd": "^2.8"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"Visma\\SeoMetaRobots\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Visma\\SeoMetaRobots\\Test\\Unit\\": "tests/unit/"
}
},
"scripts": {
"test": [
"@code-style",
"@static-analysis",
"@unit-tests"
],
"beautify": [
"vendor/bin/phpcbf"
],
"code-style": "vendor/bin/phpcs",
"PHP Mess Detector": "vendor/bin/phpmd . ansi phpmd.xml",
"static-analysis": "vendor/bin/psalm --no-progress",
"unit-tests": "vendor/bin/phpunit -c phpunit.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"magento/composer-dependency-version-audit-plugin": true
}
}
}