File: //opt/wp-cli/wp-cli-login-command/composer.json
{
"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
}
}
}