-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
46 lines (46 loc) · 1.18 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": "carlalexander/passwords-evolded",
"description": "WordPress password authentication for the modern era",
"keywords" : [ "wordpress", "passwords", "security", "authentication", "password enforcement", "hibp", "have i been pwned" ],
"type" : "wordpress-plugin",
"authors" : [
{
"name": "Carl Alexander",
"email": "[email protected]",
"homepage": "https://carlalexander.ca"
}
],
"license": "GPL-3.0+",
"require": {
"php": ">=5.6"
},
"require-dev": {
"php-mock/php-mock-phpunit": "^2.6",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpmd/phpmd": "^2.8",
"phpro/grumphp": "^1.0",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"sebastian/phpcpd": "^4.1 || ^5.0 || ^6.0"
},
"autoload": {
"classmap": ["features/"],
"psr-4": {
"PasswordsEvolved\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PasswordsEvolved\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true,
"wp-cli/autoload-splitter": false,
"ocramius/package-versions": false
}
}
}