-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
46 lines (46 loc) · 1.4 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
{
"name": "oxid-professional-services/password-policy",
"description": "OXID module for additional password validation, strength visualization and expiry rules.",
"type": "oxideshop-module",
"keywords": ["oxid", "modules", "eShop", "password", "password-strength", "password-policy"],
"license": "GPL-3.0-only",
"require": {
"php": ">=7.3",
"ext-json": "*"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"oxid-esales/oxideshop-ide-helper": "^4",
"oxid-esales/testing-library": "^8.0",
"oxid-esales/oxideshop-ce": "^6.4"
},
"extra": {
"oxideshop": {
"target-directory": "oxps/passwordpolicy"
}
},
"autoload": {
"psr-4": {
"OxidProfessionalServices\\PasswordPolicy\\": "src",
"OxidProfessionalServices\\PasswordPolicy\\Tests\\": "tests"
}
},
"scripts": {
"fix:codestyle": "tools/php-cs-fixer fix .",
"fix": [
"@fix:codestyle"
],
"test:style": "tools/php-cs-fixer fix --dry-run --diff-format=udiff .",
"test:syntax": "vendor/bin/parallel-lint src/ tests/ metadata.php",
"test:static": "tools/phpstan --memory-limit=-1 analyse src/",
"test:unit": "phpunit -c tests/phpunit.xml tests/Unit/",
"test:infection": "infection --min-msi=78 --min-covered-msi=97",
"test": [
"@test:syntax",
"@test:style",
"@test:static",
"@test:unit",
"@test:infection"
]
}
}