-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.85 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
{
"name": "fredden/magento2-module-admin-authentication",
"description": "A Magento 2 module that allows access to Magento admin via Fredden Auth Portal",
"license": "CC-BY-NC-SA-4.0",
"type": "magento2-module",
"authors": [
{
"name": "Dan Wallis",
"email": "[email protected]"
}
],
"homepage": "https://github.com/fredden/magento2-module-admin-authentication",
"require": {
"php": "~8.2.0 || ~8.3.0",
"ext-json": "*",
"ext-random": "*",
"firebase/php-jwt": "^5.5 || ^6.0",
"magento/framework": "^102.0 || ^103.0",
"magento/module-backend": "^101.0 || ^102.0",
"magento/module-captcha": "^100.0.2",
"magento/module-config": "^101.0",
"magento/module-two-factor-auth": "^1.0",
"magento/module-user": "^101.0"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.11.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"maglnet/composer-require-checker": "^3.8",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.9"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz/"
}
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Fredden\\AdminAuth\\": "src"
},
"files": [
"src/registration.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"magento/composer-dependency-version-audit-plugin": false,
"magento/magento-composer-installer": false,
"phpstan/extension-installer": true
}
}
}