-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.82 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
{
"name": "jbrada/module-well-known-change-password",
"description": "This Magento 2 module provides a well-known endpoint for the 'change password' functionality, allowing seamless redirection to the customer password change page.",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Jiří Brada",
"email": "[email protected]",
"homepage": "https://jbrada.cz"
}
],
"require": {
"php": "^8.1",
"magento/framework": "^103.0",
"magento/module-store": "^101.1",
"psr/log": "^1.0.1 || ^2.0 || ^3.0"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.32.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0",
"magento/magento-coding-standard": "*",
"phpstan/phpstan": "~1.7",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"JBrada\\WellKnownChangePassword\\": ""
}
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"phpcs": "vendor/bin/phpcs --ignore=vendor/ --standard=vendor/magento/magento-coding-standard/Magento2 ./",
"phpcbf": "vendor/bin/phpcbf --ignore=vendor/ --standard=vendor/magento/magento-coding-standard/Magento2 ./",
"phpstan": "vendor/bin/phpstan analyze"
}
}