{"id":13824664,"url":"https://github.com/wp-cli/config-command","last_synced_at":"2025-05-15T23:08:20.522Z","repository":{"id":45041355,"uuid":"84367939","full_name":"wp-cli/config-command","owner":"wp-cli","description":"Generates and reads the wp-config.php file.","archived":false,"fork":false,"pushed_at":"2025-05-12T18:24:23.000Z","size":8805,"stargazers_count":39,"open_issues_count":14,"forks_count":37,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-05-12T19:41:29.851Z","etag":null,"topics":["cli","config","hacktoberfest","wordpress","wp-cli","wp-cli-package"],"latest_commit_sha":null,"homepage":"","language":"Gherkin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wp-cli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-03-08T21:29:36.000Z","updated_at":"2025-05-12T18:24:25.000Z","dependencies_parsed_at":"2023-12-21T12:11:13.785Z","dependency_job_id":"0bca4ca5-d878-4eb8-85bb-05660a3980b5","html_url":"https://github.com/wp-cli/config-command","commit_stats":{"total_commits":581,"total_committers":59,"mean_commits":9.847457627118644,"dds":0.7607573149741824,"last_synced_commit":"112ab8af6564084a3599c0f4d90ac91911cf565e"},"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-cli%2Fconfig-command","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-cli%2Fconfig-command/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-cli%2Fconfig-command/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-cli%2Fconfig-command/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wp-cli","download_url":"https://codeload.github.com/wp-cli/config-command/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254436949,"owners_count":22070947,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","config","hacktoberfest","wordpress","wp-cli","wp-cli-package"],"created_at":"2024-08-04T09:01:06.823Z","updated_at":"2025-05-15T23:08:14.907Z","avatar_url":"https://github.com/wp-cli.png","language":"Gherkin","readme":"wp-cli/config-command\n=====================\n\nGenerates and reads the wp-config.php file.\n\n[![Testing](https://github.com/wp-cli/config-command/actions/workflows/testing.yml/badge.svg)](https://github.com/wp-cli/config-command/actions/workflows/testing.yml)\n\nQuick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing) | [Support](#support)\n\n## Using\n\nThis package implements the following commands:\n\n### wp config\n\nGenerates and reads the wp-config.php file.\n\n~~~\nwp config\n~~~\n\n**EXAMPLES**\n\n    # Create standard wp-config.php file.\n    $ wp config create --dbname=testing --dbuser=wp --dbpass=securepswd --locale=ro_RO\n    Success: Generated 'wp-config.php' file.\n\n    # List constants and variables defined in wp-config.php file.\n    $ wp config list\n    +------------------+------------------------------------------------------------------+----------+\n    | key              | value                                                            | type     |\n    +------------------+------------------------------------------------------------------+----------+\n    | table_prefix     | wp_                                                              | variable |\n    | DB_NAME          | wp_cli_test                                                      | constant |\n    | DB_USER          | root                                                             | constant |\n    | DB_PASSWORD      | root                                                             | constant |\n    | AUTH_KEY         | r6+@shP1yO\u0026$)1gdu.hl[/j;7Zrvmt~o;#WxSsa0mlQOi24j2cR,7i+QM/#7S:o^ | constant |\n    | SECURE_AUTH_KEY  | iO-z!_m--YH$Tx2tf/\u0026V,YW*13Z_HiRLqi)d?$o-tMdY+82pK$`T.NYW~iTLW;xp | constant |\n    +------------------+------------------------------------------------------------------+----------+\n\n    # Get wp-config.php file path.\n    $ wp config path\n    /home/person/htdocs/project/wp-config.php\n\n    # Get the table_prefix as defined in wp-config.php file.\n    $ wp config get table_prefix\n    wp_\n\n    # Set the WP_DEBUG constant to true.\n    $ wp config set WP_DEBUG true --raw\n    Success: Updated the constant 'WP_DEBUG' in the 'wp-config.php' file with the raw value 'true'.\n\n    # Delete the COOKIE_DOMAIN constant from the wp-config.php file.\n    $ wp config delete COOKIE_DOMAIN\n    Success: Deleted the constant 'COOKIE_DOMAIN' from the 'wp-config.php' file.\n\n    # Launch system editor to edit wp-config.php file.\n    $ wp config edit\n\n    # Check whether the DB_PASSWORD constant exists in the wp-config.php file.\n    $ wp config has DB_PASSWORD\n    $ echo $?\n    0\n\n    # Assert if MULTISITE is true.\n    $ wp config is-true MULTISITE\n    $ echo $?\n    0\n\n    # Get new salts for your wp-config.php file.\n    $ wp config shuffle-salts\n    Success: Shuffled the salt keys.\n\n\n\n### wp config edit\n\nLaunches system editor to edit the wp-config.php file.\n\n~~~\nwp config edit [--config-file=\u003cpath\u003e]\n~~~\n\n**OPTIONS**\n\n\t[--config-file=\u003cpath\u003e]\n\t\tSpecify the file path to the config file to be edited. Defaults to the root of the\n\t\tWordPress installation and the filename \"wp-config.php\".\n\n**EXAMPLES**\n\n    # Launch system editor to edit wp-config.php file\n    $ wp config edit\n\n    # Edit wp-config.php file in a specific editor\n    $ EDITOR=vim wp config edit\n\n\n\n### wp config delete\n\nDeletes a specific constant or variable from the wp-config.php file.\n\n~~~\nwp config delete \u003cname\u003e [--type=\u003ctype\u003e] [--config-file=\u003cpath\u003e]\n~~~\n\n**OPTIONS**\n\n\t\u003cname\u003e\n\t\tName of the wp-config.php constant or variable.\n\n\t[--type=\u003ctype\u003e]\n\t\tType of the config value to delete. Defaults to 'all'.\n\t\t---\n\t\tdefault: all\n\t\toptions:\n\t\t  - constant\n\t\t  - variable\n\t\t  - all\n\t\t---\n\n\t[--config-file=\u003cpath\u003e]\n\t\tSpecify the file path to the config file to be modified. Defaults to the root of the\n\t\tWordPress installation and the filename \"wp-config.php\".\n\n**EXAMPLES**\n\n    # Delete the COOKIE_DOMAIN constant from the wp-config.php file.\n    $ wp config delete COOKIE_DOMAIN\n    Success: Deleted the constant 'COOKIE_DOMAIN' from the 'wp-config.php' file.\n\n\n\n### wp config create\n\nGenerates a wp-config.php file.\n\n~~~\nwp config create --dbname=\u003cdbname\u003e --dbuser=\u003cdbuser\u003e [--dbpass=\u003cdbpass\u003e] [--dbhost=\u003cdbhost\u003e] [--dbprefix=\u003cdbprefix\u003e] [--dbcharset=\u003cdbcharset\u003e] [--dbcollate=\u003cdbcollate\u003e] [--locale=\u003clocale\u003e] [--extra-php] [--skip-salts] [--skip-check] [--force] [--config-file=\u003cpath\u003e] [--insecure]\n~~~\n\nCreates a new wp-config.php with database constants, and verifies that\nthe database constants are correct.\n\n**OPTIONS**\n\n\t--dbname=\u003cdbname\u003e\n\t\tSet the database name.\n\n\t--dbuser=\u003cdbuser\u003e\n\t\tSet the database user.\n\n\t[--dbpass=\u003cdbpass\u003e]\n\t\tSet the database user password.\n\n\t[--dbhost=\u003cdbhost\u003e]\n\t\tSet the database host.\n\t\t---\n\t\tdefault: localhost\n\t\t---\n\n\t[--dbprefix=\u003cdbprefix\u003e]\n\t\tSet the database table prefix.\n\t\t---\n\t\tdefault: wp_\n\t\t---\n\n\t[--dbcharset=\u003cdbcharset\u003e]\n\t\tSet the database charset.\n\t\t---\n\t\tdefault: utf8\n\t\t---\n\n\t[--dbcollate=\u003cdbcollate\u003e]\n\t\tSet the database collation.\n\t\t---\n\t\tdefault:\n\t\t---\n\n\t[--locale=\u003clocale\u003e]\n\t\tSet the WPLANG constant. Defaults to $wp_local_package variable.\n\n\t[--extra-php]\n\t\tIf set, the command copies additional PHP code into wp-config.php from STDIN.\n\n\t[--skip-salts]\n\t\tIf set, keys and salts won't be generated, but should instead be passed via `--extra-php`.\n\n\t[--skip-check]\n\t\tIf set, the database connection is not checked.\n\n\t[--force]\n\t\tOverwrites existing files, if present.\n\n\t[--config-file=\u003cpath\u003e]\n\t\tSpecify the file path to the config file to be created. Defaults to the root of the\n\t\tWordPress installation and the filename \"wp-config.php\".\n\n\t[--insecure]\n\t\tRetry API download without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.\n\n**EXAMPLES**\n\n    # Standard wp-config.php file\n    $ wp config create --dbname=testing --dbuser=wp --dbpass=securepswd --locale=ro_RO\n    Success: Generated 'wp-config.php' file.\n\n    # Enable WP_DEBUG and WP_DEBUG_LOG\n    $ wp config create --dbname=testing --dbuser=wp --dbpass=securepswd --extra-php \u003c\u003cPHP\n    define( 'WP_DEBUG', true );\n    define( 'WP_DEBUG_LOG', true );\n    PHP\n    Success: Generated 'wp-config.php' file.\n\n    # Avoid disclosing password to bash history by reading from password.txt\n    # Using --prompt=dbpass will prompt for the 'dbpass' argument\n    $ wp config create --dbname=testing --dbuser=wp --prompt=dbpass \u003c password.txt\n    Success: Generated 'wp-config.php' file.\n\n\n\n### wp config get\n\nGets the value of a specific constant or variable defined in wp-config.php file.\n\n~~~\nwp config get \u003cname\u003e [--type=\u003ctype\u003e] [--format=\u003cformat\u003e] [--config-file=\u003cpath\u003e]\n~~~\n\n**OPTIONS**\n\n\t\u003cname\u003e\n\t\tName of the wp-config.php constant or variable.\n\n\t[--type=\u003ctype\u003e]\n\t\tType of config value to retrieve. Defaults to 'all'.\n\t\t---\n\t\tdefault: all\n\t\toptions:\n\t\t  - constant\n\t\t  - variable\n\t\t  - all\n\t\t---\n\n\t[--format=\u003cformat\u003e]\n\t\tGet value in a particular format.\n\t\tDotenv is limited to non-object values.\n\t\t---\n\t\tdefault: var_export\n\t\toptions:\n\t\t  - var_export\n\t\t  - json\n\t\t  - yaml\n\t\t  - dotenv\n\t\t---\n\n\t[--config-file=\u003cpath\u003e]\n\t\tSpecify the file path to the config file to be read. Defaults to the root of the\n\t\tWordPress installation and the filename \"wp-config.php\".\n\n**EXAMPLES**\n\n    # Get the table_prefix as defined in wp-config.php file.\n    $ wp config get table_prefix\n    wp_\n\n\n\n### wp config has\n\nChecks whether a specific constant or variable exists in the wp-config.php file.\n\n~~~\nwp config has \u003cname\u003e [--type=\u003ctype\u003e] [--config-file=\u003cpath\u003e]\n~~~\n\n**OPTIONS**\n\n\t\u003cname\u003e\n\t\tName of the wp-config.php constant or variable.\n\n\t[--type=\u003ctype\u003e]\n\t\tType of the config value to set. Defaults to 'all'.\n\t\t---\n\t\tdefault: all\n\t\toptions:\n\t\t  - constant\n\t\t  - variable\n\t\t  - all\n\t\t---\n\n\t[--config-file=\u003cpath\u003e]\n\t\tSpecify the file path to the config file to be checked. Defaults to the root of the\n\t\tWordPress installation and the filename \"wp-config.php\".\n\n**EXAMPLES**\n\n    # Check whether the DB_PASSWORD constant exists in the wp-config.php file.\n    $ wp config has DB_PASSWORD\n\n\n\n### wp config is-true\n\nDetermines whether value of a specific defined constant or variable is truthy.\n\n~~~\nwp config is-true \u003cname\u003e [--type=\u003ctype\u003e] [--config-file=\u003cpath\u003e]\n~~~\n\nThis determination is made by evaluating the retrieved value via boolval().\n\n**OPTIONS**\n\n\t\u003cname\u003e\n\t\tName of the wp-config.php constant or variable.\n\n\t[--type=\u003ctype\u003e]\n\t\tType of config value to retrieve. Defaults to 'all'.\n\t\t---\n\t\tdefault: all\n\t\toptions:\n\t\t  - constant\n\t\t  - variable\n\t\t  - all\n\t\t---\n\n\t[--config-file=\u003cpath\u003e]\n\t\tSpecify the file path to the config file to be read. Defaults to the root of the\n\t\tWordPress installation and the filename \"wp-config.php\".\n\n**EXAMPLES**\n\n    # Assert if MULTISITE is true\n    $ wp config is-true MULTISITE\n    $ echo $?\n    0\n\n\n\n### wp config list\n\nLists variables, constants, and file includes defined in wp-config.php file.\n\n~~~\nwp config list [\u003cfilter\u003e...] [--fields=\u003cfields\u003e] [--format=\u003cformat\u003e] [--strict] [--config-file=\u003cpath\u003e]\n~~~\n\n**OPTIONS**\n\n\t[\u003cfilter\u003e...]\n\t\tName or partial name to filter the list by.\n\n\t[--fields=\u003cfields\u003e]\n\t\tLimit the output to specific fields. Defaults to all fields.\n\n\t[--format=\u003cformat\u003e]\n\t\tRender output in a particular format.\n\t\tDotenv is limited to non-object values.\n\t\t---\n\t\tdefault: table\n\t\toptions:\n\t\t  - table\n\t\t  - csv\n\t\t  - json\n\t\t  - yaml\n\t\t  - dotenv\n\t\t---\n\n\t[--strict]\n\t\tEnforce strict matching when a filter is provided.\n\n\t[--config-file=\u003cpath\u003e]\n\t\tSpecify the file path to the config file to be read. Defaults to the root of the\n\t\tWordPress installation and the filename \"wp-config.php\".\n\n**EXAMPLES**\n\n    # List constants and variables defined in wp-config.php file.\n    $ wp config list\n    +------------------+------------------------------------------------------------------+----------+\n    | key              | value                                                            | type     |\n    +------------------+------------------------------------------------------------------+----------+\n    | table_prefix     | wp_                                                              | variable |\n    | DB_NAME          | wp_cli_test                                                      | constant |\n    | DB_USER          | root                                                             | constant |\n    | DB_PASSWORD      | root                                                             | constant |\n    | AUTH_KEY         | r6+@shP1yO\u0026$)1gdu.hl[/j;7Zrvmt~o;#WxSsa0mlQOi24j2cR,7i+QM/#7S:o^ | constant |\n    | SECURE_AUTH_KEY  | iO-z!_m--YH$Tx2tf/\u0026V,YW*13Z_HiRLqi)d?$o-tMdY+82pK$`T.NYW~iTLW;xp | constant |\n    +------------------+------------------------------------------------------------------+----------+\n\n    # List only database user and password from wp-config.php file.\n    $ wp config list DB_USER DB_PASSWORD --strict\n    +------------------+-------+----------+\n    | key              | value | type     |\n    +------------------+-------+----------+\n    | DB_USER          | root  | constant |\n    | DB_PASSWORD      | root  | constant |\n    +------------------+-------+----------+\n\n    # List all salts from wp-config.php file.\n    $ wp config list _SALT\n    +------------------+------------------------------------------------------------------+----------+\n    | key              | value                                                            | type     |\n    +------------------+------------------------------------------------------------------+----------+\n    | AUTH_SALT        | n:]Xditk+_7\u003eQi=\u003eBmtZHiH-6/Ecrvl(V5ceeGP:{\u003e?;BT^=[B3-0\u003e,~F5z$(+Q$ | constant |\n    | SECURE_AUTH_SALT | ?Z/p|XhDw3w}?c.z%|+BAr|(Iv*H%%U+Du\u0026kKR y?cJOYyRVRBeB[2zF-`(\u003e+LCC | constant |\n    | LOGGED_IN_SALT   | +$@(1{b~Z~s}Cs\u003e8Y]6[m6~TnoCDpE\u003eO%e75u}\u00266kUH!\u003eq:7uM4lxbB6[1pa_X,q | constant |\n    | NONCE_SALT       | _x+F li|QL?0OSQns1_JZ{|Ix3Jleox-71km/gifnyz8kmo=w-;@AE8W,(fP\u003cN}2 | constant |\n    +------------------+------------------------------------------------------------------+----------+\n\n\n\n### wp config path\n\nGets the path to wp-config.php file.\n\n~~~\nwp config path \n~~~\n\n**EXAMPLES**\n\n    # Get wp-config.php file path\n    $ wp config path\n    /home/person/htdocs/project/wp-config.php\n\n\n\n### wp config set\n\nSets the value of a specific constant or variable defined in wp-config.php file.\n\n~~~\nwp config set \u003cname\u003e \u003cvalue\u003e [--add] [--raw] [--anchor=\u003canchor\u003e] [--placement=\u003cplacement\u003e] [--separator=\u003cseparator\u003e] [--type=\u003ctype\u003e] [--config-file=\u003cpath\u003e]\n~~~\n\n**OPTIONS**\n\n\t\u003cname\u003e\n\t\tName of the wp-config.php constant or variable.\n\n\t\u003cvalue\u003e\n\t\tValue to set the wp-config.php constant or variable to.\n\n\t[--add]\n\t\tAdd the value if it doesn't exist yet.\n\t\tThis is the default behavior, override with --no-add.\n\n\t[--raw]\n\t\tPlace the value into the wp-config.php file as is, instead of as a quoted string.\n\n\t[--anchor=\u003canchor\u003e]\n\t\tAnchor string where additions of new values are anchored around.\n\t\tDefaults to \"/* That's all, stop editing!\".\n\t\tThe special case \"EOF\" string uses the end of the file as the anchor.\n\n\t[--placement=\u003cplacement\u003e]\n\t\tWhere to place the new values in relation to the anchor string.\n\t\t---\n\t\tdefault: 'before'\n\t\toptions:\n\t\t  - before\n\t\t  - after\n\t\t---\n\n\t[--separator=\u003cseparator\u003e]\n\t\tSeparator string to put between an added value and its anchor string.\n\t\tThe following escape sequences will be recognized and properly interpreted: '\\n' =\u003e newline, '\\r' =\u003e carriage return, '\\t' =\u003e tab.\n\t\tDefaults to a single EOL (\"\\n\" on *nix and \"\\r\\n\" on Windows).\n\n\t[--type=\u003ctype\u003e]\n\t\tType of the config value to set. Defaults to 'all'.\n\t\t---\n\t\tdefault: all\n\t\toptions:\n\t\t  - constant\n\t\t  - variable\n\t\t  - all\n\t\t---\n\n\t[--config-file=\u003cpath\u003e]\n\t\tSpecify the file path to the config file to be modified. Defaults to the root of the\n\t\tWordPress installation and the filename \"wp-config.php\".\n\n**EXAMPLES**\n\n    # Set the WP_DEBUG constant to true.\n    $ wp config set WP_DEBUG true --raw\n    Success: Updated the constant 'WP_DEBUG' in the 'wp-config.php' file with the raw value 'true'.\n\n\n\n### wp config shuffle-salts\n\nRefreshes the salts defined in the wp-config.php file.\n\n~~~\nwp config shuffle-salts [\u003ckeys\u003e...] [--force] [--config-file=\u003cpath\u003e] [--insecure]\n~~~\n\n**OPTIONS**\n\n\t[\u003ckeys\u003e...]\n\t\tOne ore more keys to shuffle. If none are provided, this falls back to the default WordPress Core salt keys.\n\n\t[--force]\n\t\tIf an unknown key is requested to be shuffled, add it instead of throwing a warning.\n\n\t[--config-file=\u003cpath\u003e]\n\t\tSpecify the file path to the config file to be modified. Defaults to the root of the\n\t\tWordPress installation and the filename \"wp-config.php\".\n\n\t[--insecure]\n\t\tRetry API download without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.\n\n**EXAMPLES**\n\n    # Get new salts for your wp-config.php file\n    $ wp config shuffle-salts\n    Success: Shuffled the salt keys.\n\n    # Add a cache key salt to the wp-config.php file\n    $ wp config shuffle-salts WP_CACHE_KEY_SALT --force\n    Success: Shuffled the salt keys.\n\n## Installing\n\nThis package is included with WP-CLI itself, no additional installation necessary.\n\nTo install the latest version of this package over what's included in WP-CLI, run:\n\n    wp package install git@github.com:wp-cli/config-command.git\n\n## Contributing\n\nWe appreciate you taking the initiative to contribute to this project.\n\nContributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.\n\nFor a more thorough introduction, [check out WP-CLI's guide to contributing](https://make.wordpress.org/cli/handbook/contributing/). This package follows those policy and guidelines.\n\n### Reporting a bug\n\nThink you’ve found a bug? We’d love for you to help us get it fixed.\n\nBefore you create a new issue, you should [search existing issues](https://github.com/wp-cli/config-command/issues?q=label%3Abug%20) to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.\n\nOnce you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please [create a new issue](https://github.com/wp-cli/config-command/issues/new). Include as much detail as you can, and clear steps to reproduce if possible. For more guidance, [review our bug report documentation](https://make.wordpress.org/cli/handbook/bug-reports/).\n\n### Creating a pull request\n\nWant to contribute a new feature? Please first [open a new issue](https://github.com/wp-cli/config-command/issues/new) to discuss whether the feature is a good fit for the project.\n\nOnce you've decided to commit the time to seeing your pull request through, [please follow our guidelines for creating a pull request](https://make.wordpress.org/cli/handbook/pull-requests/) to make sure it's a pleasant experience. See \"[Setting up](https://make.wordpress.org/cli/handbook/pull-requests/#setting-up)\" for details specific to working on this package locally.\n\n## Support\n\nGitHub issues aren't for general support questions, but there are other venues you can try: https://wp-cli.org/#support\n\n\n*This README.md is generated dynamically from the project's codebase using `wp scaffold package-readme` ([doc](https://github.com/wp-cli/scaffold-package-command#wp-scaffold-package-readme)). To suggest changes, please submit a pull request against the corresponding part of the codebase.*\n","funding_links":[],"categories":["Gherkin","Programming Languages"],"sub_categories":["PHP"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwp-cli%2Fconfig-command","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwp-cli%2Fconfig-command","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwp-cli%2Fconfig-command/lists"}