-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
76 lines (76 loc) · 2.52 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
{
"name": "bitexpert/magento2-force-customer-login",
"description": "The Force Login module for Magento2 redirects a storefront visitor to the Magento2 Frontend login page, if the visitor is not logged in. It is possible to configure the whitelisted urls to add custom definitions.",
"type": "magento2-module",
"version": "6.0.0",
"minimum-stability": "stable",
"license": "Apache-2.0",
"authors": [
{
"name": "Florian Horn",
"email": "F.Horn@bitExpert.de",
"homepage": "http://www.bitExpert.de"
},
{
"name": "Stephan Hochdörfer",
"email": "S.Hochdoerfer@bitExpert.de",
"homepage": "http://www.bitExpert.de"
}
],
"require": {
"php": "~8.1.0|~8.2.0|~8.3.0",
"magento/framework": "^103.0.4",
"magento/module-backend": "^102.0.4",
"magento/module-customer": "^103.0.4",
"magento/module-store": "^101.1.4",
"magento/module-ui": "^101.2.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"captainhook/captainhook": "^5.16.4",
"captainhook/plugin-composer": "^5.3.3",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.33",
"bitexpert/phpstan-magento": "^0.30.0",
"magento/magento-coding-standard": "^31",
"php-coveralls/php-coveralls": "^2.7"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"BitExpert\\ForceCustomerLogin\\": ""
}
},
"repositories": {
"magento": {
"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 ../../magento/magento-coding-standard/,../../phpcompatibility/php-compatibility)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/,../../phpcompatibility/php-compatibility)"
],
"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": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"magento/composer-dependency-version-audit-plugin": true,
"phpstan/extension-installer": true
}
}
}