-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
83 lines (83 loc) · 2.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "hivecommerce/magento2-content-fuzzyfyr",
"description": "The Content Fuzzyfyr module for Magento2 fills up empty content fields - and if needed - switches real content with dummy content. This is for development purposes, e.g. save time to prepare test data and being compliant to GDPR.",
"type": "magento2-module",
"minimum-stability": "stable",
"license": "Apache-2.0",
"authors": [
{
"name": "Florian Horn",
"email": "[email protected]",
"homepage": "http://www.bitExpert.de"
},
{
"name": "Stephan Hochdörfer",
"email": "[email protected]",
"homepage": "http://www.bitExpert.de"
}
],
"require": {
"php": "~7.4.0|~8.0.0|~8.1.0",
"magento/framework": "~102.0.7-p2|~103.0.0|~103.0.1|~103.0.2|~103.0.3|~103.0.4",
"magento/module-catalog": "~103.0.7-p2|~104.0.0|~104.0.1|~104.0.2|~104.0.3|~104.0.4",
"magento/module-cms": "~103.0.7-p2|~104.0.0|~104.0.1|~104.0.2|~104.0.3|~104.0.4",
"magento/module-customer": "~102.0.7-p2|~103.0.0|~103.0.1|~103.0.2|~103.0.3|~103.0.4",
"magento/module-user": "~101.1.7|~101.2.0|~101.2.1|~101.2.2|~101.2.3|~101.2.4"
},
"require-dev": {
"bitexpert/captainhook-infection": "^0.6.0",
"bitexpert/phpstan-magento": "^0.30.1",
"captainhook/captainhook": "^5.10.8",
"captainhook/plugin-composer": "^5.3.3",
"infection/infection": "0.22.0|^0.26.6",
"magento/magento-coding-standard": "15",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.7.2",
"phpstan/phpstan-strict-rules": "^1.1",
"phpunit/phpunit": "^9.5.20",
"squizlabs/php_codesniffer": "^3.6"
},
"conflict": {
"allindata/magento2-content-fuzzyfyr": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"HiveCommerce\\ContentFuzzyfyr\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz"
}
],
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard/)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard/)"
],
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/phpcs --standard=Magento2 --severity=10 --extensions=php,phtml --ignore=**/*.js,.git,bin,dist,docs,env,vendor,validate_m2_package.php .",
"cs-fix": "vendor/bin/phpcbf",
"analyze": "vendor/bin/phpstan analyze",
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-clover clover.xml"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"captainhook/plugin-composer": true,
"phpstan/extension-installer": true,
"magento/composer-dependency-version-audit-plugin": false
}
}
}