-
Notifications
You must be signed in to change notification settings - Fork 48
/
composer.json
50 lines (50 loc) · 1.28 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
{
"name": "aaemnnosttv/wp-cli-login-command",
"description": "Log in to WordPress with secure passwordless magic links.",
"homepage": "https://github.com/aaemnnosttv/wp-cli-login-command",
"license": "MIT",
"authors": [
{
"name": "Evan Mattson",
"email": "[email protected]",
"homepage": "https://aaemnnost.tv"
}
],
"autoload": {
"psr-4": {
"WP_CLI_Login\\": "src/"
},
"files": [ "command.php" ]
},
"autoload-dev": {
"classmap": [ "plugin" ],
"psr-4": {
"WP_CLI_Login\\Tests\\": "tests/"
}
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"composer/semver": "^1 || ^2 || ^3"
},
"require-dev": {
"phpunit/phpunit": "^5 || ^6 || ^7 || ^8 || ^9",
"wp-cli/entity-command": "^2",
"wp-cli/extension-command": "^2",
"wp-cli/server-command": "^2",
"wp-cli/wp-cli-tests": "^3.0"
},
"scripts": {
"test": [
"phpunit",
"behat"
],
"behat": "behat",
"phpunit": "phpunit"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}