language-command/composer.json
2025-07-10 16:31:36 +02:00

94 lines
2.5 KiB
JSON

{
"name": "wp-cli/wp-cli-bundle",
"description": "WP-CLI bundle package with default commands.",
"keywords": [
"cli",
"wordpress"
],
"homepage": "https://wp-cli.org",
"license": "MIT",
"require": {
"php": ">=7.2.24",
"wp-cli/cache-command": "^2",
"wp-cli/checksum-command": "^2.1",
"wp-cli/config-command": "^2.1",
"wp-cli/core-command": "^2.1",
"wp-cli/cron-command": "^2",
"wp-cli/db-command": "^2",
"wp-cli/embed-command": "^2",
"wp-cli/entity-command": "^2",
"wp-cli/eval-command": "^2",
"wp-cli/export-command": "^2",
"wp-cli/extension-command": "^2.1",
"wp-cli/i18n-command": "^2",
"wp-cli/import-command": "^2",
"wp-cli/language-command": "^2",
"wp-cli/maintenance-mode-command": "^2",
"wp-cli/media-command": "^2",
"wp-cli/package-command": "^2.1",
"wp-cli/rewrite-command": "^2",
"wp-cli/role-command": "^2",
"wp-cli/scaffold-command": "^2",
"wp-cli/search-replace-command": "^2",
"wp-cli/server-command": "^2",
"wp-cli/shell-command": "^2",
"wp-cli/super-admin-command": "^2",
"wp-cli/widget-command": "^2",
"wp-cli/wp-cli": "dev-main"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"wp-cli/wp-cli-tests": "^5"
},
"suggest": {
"psy/psysh": "Enhanced `wp shell` functionality"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"johnpbloch/wordpress-core-installer": true,
"phpstan/extension-installer": true
},
"autoloader-suffix": "WpCliBundle",
"platform": {
"php": "7.2.24"
},
"process-timeout": 7200,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "2.12.x-dev"
}
},
"autoload-dev": {
"psr-4": {
"WP_CLI\\Maintenance\\": "utils/maintenance"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"behat": "run-behat-tests",
"behat-rerun": "rerun-behat-tests",
"lint": "run-linter-tests",
"phpcs": "run-phpcs-tests",
"phpstan": "run-phpstan-tests",
"phpunit": "run-php-unit-tests",
"phpcbf": "run-phpcbf-cleanup",
"placeholder": "value",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpcs",
"@phpstan",
"@phpunit",
"@behat"
]
},
"support": {
"issues": "https://github.com/wp-cli/wp-cli-bundle/issues",
"source": "https://github.com/wp-cli/wp-cli-bundle",
"docs": "https://make.wordpress.org/cli/handbook/"
}
}