i18n-command/composer.json
dependabot-preview[bot] a8667c5914
Update gettext/gettext requirement from ^4.8 to ^5.4
Updates the requirements on [gettext/gettext](https://github.com/oscarotero/Gettext) to permit the latest version.
- [Release notes](https://github.com/oscarotero/Gettext/releases)
- [Changelog](https://github.com/php-gettext/Gettext/blob/master/CHANGELOG.md)
- [Commits](https://github.com/oscarotero/Gettext/compare/v4.8.0...v5.4.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2022-01-05 18:34:39 -06:00

67 lines
1.7 KiB
JSON

{
"name": "wp-cli/i18n-command",
"type": "wp-cli-package",
"description": "Provides internationalization tools for WordPress projects.",
"homepage": "https://github.com/wp-cli/i18n-command",
"license": "MIT",
"authors": [
{
"name": "Pascal Birchler",
"homepage": "https://pascalbirchler.com/"
}
],
"require": {
"gettext/gettext": "^5.4",
"mck89/peast": "^1.13.9",
"wp-cli/wp-cli": "^2.5"
},
"require-dev": {
"wp-cli/scaffold-command": "^1.2 || ^2",
"wp-cli/wp-cli-tests": "^3.1"
},
"suggest": {
"ext-mbstring": "Used for calculating include/exclude matches in code extraction"
},
"config": {
"process-timeout": 7200,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"bundled": true,
"commands": [
"i18n",
"i18n make-pot",
"i18n make-json"
]
},
"autoload": {
"psr-4": {
"WP_CLI\\I18n\\": "src/"
},
"files": [
"i18n-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",
"phpunit": "run-php-unit-tests",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpcs",
"@phpunit",
"@behat"
]
},
"support": {
"issues": "https://github.com/wp-cli/i18n-command/issues"
}
}