Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into develop
Browse files Browse the repository at this point in the history
* upstream/main:
  Update Composer dependencies - 2024-02-08
  Bump framework requirement to v2.10.0
  Bump wp-cli/entity-command from 2.6.1 to 2.6.2
  Update Composer dependencies - 2024-02-05-b
  Bump wp-cli/extension-command from 2.1.17 to 2.1.18
  Update Composer dependencies - 2024-02-05
  Bump andstor/file-existence-action from 2 to 3
  Bump wp-cli/extension-command from 2.1.16 to 2.1.17
  Update dependencies - 2012-12-21 (b)
  Update dependencies - 2012-12-21
  Bump wp-cli/search-replace-command from 2.1.3 to 2.1.4
  Bump wp-cli/wp-cli-tests from 4.2.4 to 4.2.6
  Bump actions/download-artifact from 3 to 4
  Bump actions/upload-artifact from 3 to 4
  Update Composer dependencies - 2021-12-08
  Remove Composer version constraint
  Update Composer lock file (wp-cli#598)
  Bump wp-cli/wp-cli-tests from 4.2.2 to 4.2.4
  Remove unused pre-commit scripts.
  Bump wp-cli/language-command from 2.0.16 to 2.0.17
  Fix SQLite tests (wp-cli#588)
  Always create xz-compressed Debian packages
  • Loading branch information
lipemat committed Feb 8, 2024
2 parents 83427cc + b795ca1 commit 5c698be
Show file tree
Hide file tree
Showing 8 changed files with 277 additions and 844 deletions.
9 changes: 0 additions & 9 deletions .idea/wp-cli-bundle.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

188 changes: 93 additions & 95 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,100 +1,98 @@
{
"name": "wp-cli/wp-cli-bundle",
"description": "WP-CLI bundle package with default commands.",
"keywords": [
"cli",
"wordpress"
],
"homepage": "https://wp-cli.org",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wp-cli/restful",
"canonical": false
}
],
"require": {
"php": ">=7.0.8",
"composer/composer": "^1.10.23 || ^2.2.17",
"psy/psysh": "^0.11.8",
"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/restful": "dev-main",
"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": "^4"
},
"suggest": {
"psy/psysh": "Enhanced `wp shell` functionality"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"johnpbloch/wordpress-core-installer": true
},
"platform": {
"php": "7.0.8",
"ext-posix": "1.0.4"
},
"process-timeout": 7200,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "2.9.x-dev"
}
},
"autoload-dev": {
"psr-4": {
"WP_CLI\\Maintenance\\": "utils/maintenance"
}
"name": "wp-cli/wp-cli-bundle",
"description": "WP-CLI bundle package with default commands.",
"keywords": [
"cli",
"wordpress"
],
"homepage": "https://wp-cli.org",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wp-cli/restful",
"canonical": false
}
],
"require": {
"php": ">=7.0.8",
"psy/psysh": "^0.11.22",
"wp-cli/restful": "dev-main",
"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": "^2.10.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"wp-cli/wp-cli-tests": "^4"
},
"suggest": {
"psy/psysh": "Enhanced `wp shell` functionality"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"johnpbloch/wordpress-core-installer": true
},
"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",
"placeholder": "value",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpcs",
"@phpunit",
"@behat"
]
"platform": {
"php": "7.0.8"
},
"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/"
"process-timeout": 7200,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "2.9.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",
"phpunit": "run-php-unit-tests",
"placeholder": "value",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpcs",
"@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/"
}
}
Loading

0 comments on commit 5c698be

Please sign in to comment.