forked from bitExpert/magento2-force-login
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.62 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
{
"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": "5.2.0",
"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.3.0|~7.4.0|~8.1.0|~8.2.0",
"magento/framework": "~103.0.0|~103.0.1|~103.0.2|~103.0.3|~103.0.4|~103.0.5",
"magento/module-backend": "~102.0.0|~102.0.1|~102.0.2|~102.0.3|~102.0.4|~102.0.5",
"magento/module-customer": "~103.0.0|~103.0.1|~103.0.2|~103.0.3|~103.0.4|~103.0.5",
"magento/module-store": "~101.1.0|~101.1.1|~101.1.2|~101.1.3|~101.1.4|~101.1.5",
"magento/module-ui": "~101.2.0|~101.2.1|~101.2.2|~101.2.3|~101.2.4|~101.2.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"captainhook/captainhook": "^5.10.8",
"captainhook/plugin-composer": "^5.3.3",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^1.7.2",
"bitexpert/phpstan-magento": "^0.23.0",
"magento/magento-coding-standard": "^15"
},
"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 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": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"magento/composer-dependency-version-audit-plugin": true,
"phpstan/extension-installer": true
}
}
}