OXIESEC PANEL
- Current Dir:
/
/
opt
/
.wp-cli
/
packages
/
vendor
/
wp-cli
/
language-command
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/20/2024 11:17:28 AM
rwxr-xr-x
📄
.actrc
129 bytes
03/20/2024 11:17:26 AM
rw-r--r--
📄
.distignore
157 bytes
03/20/2024 11:17:26 AM
rw-r--r--
📄
.editorconfig
591 bytes
03/20/2024 11:17:26 AM
rw-r--r--
📁
.git
-
09/06/2025 12:29:47 PM
rwxr-xr-x
📁
.github
-
03/20/2024 11:17:26 AM
rwxr-xr-x
📄
.gitignore
117 bytes
03/20/2024 11:17:26 AM
rw-r--r--
📄
CONTRIBUTING.md
538 bytes
03/20/2024 11:17:26 AM
rw-r--r--
📄
LICENSE
1.13 KB
03/20/2024 11:17:26 AM
rw-r--r--
📄
README.md
21.46 KB
02/24/2025 12:05:13 PM
rw-r--r--
📄
behat.yml
126 bytes
03/20/2024 11:17:26 AM
rw-r--r--
📄
composer.json
2.62 KB
09/06/2025 12:29:47 PM
rw-r--r--
📁
features
-
09/06/2025 12:29:47 PM
rwxr-xr-x
📄
language-command.php
1.04 KB
03/20/2024 11:17:26 AM
rw-r--r--
📄
phpcs.xml.dist
3.46 KB
09/06/2025 12:29:47 PM
rw-r--r--
📄
phpstan.neon.dist
627 bytes
09/06/2025 12:29:47 PM
rw-r--r--
📁
src
-
09/06/2025 12:29:47 PM
rwxr-xr-x
📄
wp-cli.yml
34 bytes
03/20/2024 11:17:26 AM
rw-r--r--
Editing: composer.json
Close
{ "name": "wp-cli/language-command", "type": "wp-cli-package", "description": "Installs, activates, and manages language packs.", "homepage": "https://github.com/wp-cli/language-command", "license": "MIT", "authors": [ { "name": "Daniel Bachhuber", "email": "daniel@runcommand.io", "homepage": "https://runcommand.io" } ], "require": { "wp-cli/wp-cli": "^2.12" }, "require-dev": { "wp-cli/db-command": "^1.3 || ^2", "wp-cli/entity-command": "^1.3 || ^2", "wp-cli/extension-command": "^1.2 || ^2", "wp-cli/wp-cli-tests": "^5" }, "config": { "process-timeout": 7200, "sort-packages": true, "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true, "johnpbloch/wordpress-core-installer": true, "phpstan/extension-installer": true }, "lock": false }, "extra": { "branch-alias": { "dev-main": "2.x-dev" }, "bundled": true, "commands": [ "language", "language core", "language core activate", "language core is-installed", "language core install", "language core list", "language core uninstall", "language core update", "language plugin", "language plugin is-installed", "language plugin install", "language plugin list", "language plugin uninstall", "language plugin update", "language theme", "language theme is-installed", "language theme install", "language theme list", "language theme uninstall", "language theme update", "site switch-language" ] }, "autoload": { "classmap": [ "src/" ], "files": [ "language-command.php" ] }, "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", "phpcbf": "run-phpcbf-cleanup", "phpunit": "run-php-unit-tests", "prepare-tests": "install-package-tests", "test": [ "@lint", "@phpcs", "@phpstan", "@phpunit", "@behat" ] }, "support": { "issues": "https://github.com/wp-cli/language-command/issues" } }