├── .actrc ├── .distignore ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE ├── PULL_REQUEST_TEMPLATE ├── dependabot.yml └── workflows │ ├── code-quality.yml │ ├── regenerate-readme.yml │ └── testing.yml ├── .gitignore ├── AGENTS.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── behat.yml ├── composer.json ├── entity-command.php ├── features ├── comment-generate.feature ├── comment-list.feature ├── comment-meta.feature ├── comment-recount.feature ├── comment.feature ├── menu-item.feature ├── menu-location.feature ├── menu.feature ├── network-meta.feature ├── option-get-autoload.feature ├── option-list.feature ├── option-pluck-patch.feature ├── option-set-autoload.feature ├── option.feature ├── post-create-duplicate.feature ├── post-generate.feature ├── post-meta-clean-duplicates.feature ├── post-meta.feature ├── post-term.feature ├── post-type.feature ├── post-url-to-id.feature ├── post.feature ├── signup.feature ├── site-create.feature ├── site-empty.feature ├── site-generate.feature ├── site-meta.feature ├── site-option-pluck-patch.feature ├── site-option.feature ├── site.feature ├── taxonomy.feature ├── term-generate.feature ├── term-meta.feature ├── term-migrate.feature ├── term-recount.feature ├── term.feature ├── user-application-password.feature ├── user-generate.feature ├── user-import-csv.feature ├── user-list.feature ├── user-meta.feature ├── user-reset-password.feature ├── user-session.feature ├── user-term.feature └── user.feature ├── phpcs.xml.dist ├── phpstan.neon.dist ├── src ├── Comment_Command.php ├── Comment_Meta_Command.php ├── Menu_Command.php ├── Menu_Item_Command.php ├── Menu_Location_Command.php ├── Network_Meta_Command.php ├── Network_Namespace.php ├── Option_Command.php ├── Post_Command.php ├── Post_Meta_Command.php ├── Post_Term_Command.php ├── Post_Type_Command.php ├── Signup_Command.php ├── Site_Command.php ├── Site_Meta_Command.php ├── Site_Option_Command.php ├── Taxonomy_Command.php ├── Term_Command.php ├── Term_Meta_Command.php ├── User_Application_Password_Command.php ├── User_Command.php ├── User_Meta_Command.php ├── User_Session_Command.php ├── User_Term_Command.php └── WP_CLI │ ├── CommandWithDBObject.php │ ├── CommandWithMeta.php │ └── CommandWithTerms.php └── wp-cli.yml /.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.actrc -------------------------------------------------------------------------------- /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @wp-cli/committers 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.github/workflows/regenerate-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.github/workflows/regenerate-readme.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/README.md -------------------------------------------------------------------------------- /behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/behat.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/composer.json -------------------------------------------------------------------------------- /entity-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/entity-command.php -------------------------------------------------------------------------------- /features/comment-generate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/comment-generate.feature -------------------------------------------------------------------------------- /features/comment-list.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/comment-list.feature -------------------------------------------------------------------------------- /features/comment-meta.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/comment-meta.feature -------------------------------------------------------------------------------- /features/comment-recount.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/comment-recount.feature -------------------------------------------------------------------------------- /features/comment.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/comment.feature -------------------------------------------------------------------------------- /features/menu-item.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/menu-item.feature -------------------------------------------------------------------------------- /features/menu-location.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/menu-location.feature -------------------------------------------------------------------------------- /features/menu.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/menu.feature -------------------------------------------------------------------------------- /features/network-meta.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/network-meta.feature -------------------------------------------------------------------------------- /features/option-get-autoload.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/option-get-autoload.feature -------------------------------------------------------------------------------- /features/option-list.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/option-list.feature -------------------------------------------------------------------------------- /features/option-pluck-patch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/option-pluck-patch.feature -------------------------------------------------------------------------------- /features/option-set-autoload.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/option-set-autoload.feature -------------------------------------------------------------------------------- /features/option.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/option.feature -------------------------------------------------------------------------------- /features/post-create-duplicate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/post-create-duplicate.feature -------------------------------------------------------------------------------- /features/post-generate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/post-generate.feature -------------------------------------------------------------------------------- /features/post-meta-clean-duplicates.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/post-meta-clean-duplicates.feature -------------------------------------------------------------------------------- /features/post-meta.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/post-meta.feature -------------------------------------------------------------------------------- /features/post-term.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/post-term.feature -------------------------------------------------------------------------------- /features/post-type.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/post-type.feature -------------------------------------------------------------------------------- /features/post-url-to-id.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/post-url-to-id.feature -------------------------------------------------------------------------------- /features/post.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/post.feature -------------------------------------------------------------------------------- /features/signup.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/signup.feature -------------------------------------------------------------------------------- /features/site-create.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/site-create.feature -------------------------------------------------------------------------------- /features/site-empty.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/site-empty.feature -------------------------------------------------------------------------------- /features/site-generate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/site-generate.feature -------------------------------------------------------------------------------- /features/site-meta.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/site-meta.feature -------------------------------------------------------------------------------- /features/site-option-pluck-patch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/site-option-pluck-patch.feature -------------------------------------------------------------------------------- /features/site-option.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/site-option.feature -------------------------------------------------------------------------------- /features/site.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/site.feature -------------------------------------------------------------------------------- /features/taxonomy.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/taxonomy.feature -------------------------------------------------------------------------------- /features/term-generate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/term-generate.feature -------------------------------------------------------------------------------- /features/term-meta.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/term-meta.feature -------------------------------------------------------------------------------- /features/term-migrate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/term-migrate.feature -------------------------------------------------------------------------------- /features/term-recount.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/term-recount.feature -------------------------------------------------------------------------------- /features/term.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/term.feature -------------------------------------------------------------------------------- /features/user-application-password.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/user-application-password.feature -------------------------------------------------------------------------------- /features/user-generate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/user-generate.feature -------------------------------------------------------------------------------- /features/user-import-csv.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/user-import-csv.feature -------------------------------------------------------------------------------- /features/user-list.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/user-list.feature -------------------------------------------------------------------------------- /features/user-meta.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/user-meta.feature -------------------------------------------------------------------------------- /features/user-reset-password.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/user-reset-password.feature -------------------------------------------------------------------------------- /features/user-session.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/user-session.feature -------------------------------------------------------------------------------- /features/user-term.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/user-term.feature -------------------------------------------------------------------------------- /features/user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/features/user.feature -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/Comment_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Comment_Command.php -------------------------------------------------------------------------------- /src/Comment_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Comment_Meta_Command.php -------------------------------------------------------------------------------- /src/Menu_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Menu_Command.php -------------------------------------------------------------------------------- /src/Menu_Item_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Menu_Item_Command.php -------------------------------------------------------------------------------- /src/Menu_Location_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Menu_Location_Command.php -------------------------------------------------------------------------------- /src/Network_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Network_Meta_Command.php -------------------------------------------------------------------------------- /src/Network_Namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Network_Namespace.php -------------------------------------------------------------------------------- /src/Option_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Option_Command.php -------------------------------------------------------------------------------- /src/Post_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Post_Command.php -------------------------------------------------------------------------------- /src/Post_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Post_Meta_Command.php -------------------------------------------------------------------------------- /src/Post_Term_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Post_Term_Command.php -------------------------------------------------------------------------------- /src/Post_Type_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Post_Type_Command.php -------------------------------------------------------------------------------- /src/Signup_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Signup_Command.php -------------------------------------------------------------------------------- /src/Site_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Site_Command.php -------------------------------------------------------------------------------- /src/Site_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Site_Meta_Command.php -------------------------------------------------------------------------------- /src/Site_Option_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Site_Option_Command.php -------------------------------------------------------------------------------- /src/Taxonomy_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Taxonomy_Command.php -------------------------------------------------------------------------------- /src/Term_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Term_Command.php -------------------------------------------------------------------------------- /src/Term_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/Term_Meta_Command.php -------------------------------------------------------------------------------- /src/User_Application_Password_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/User_Application_Password_Command.php -------------------------------------------------------------------------------- /src/User_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/User_Command.php -------------------------------------------------------------------------------- /src/User_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/User_Meta_Command.php -------------------------------------------------------------------------------- /src/User_Session_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/User_Session_Command.php -------------------------------------------------------------------------------- /src/User_Term_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/User_Term_Command.php -------------------------------------------------------------------------------- /src/WP_CLI/CommandWithDBObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/WP_CLI/CommandWithDBObject.php -------------------------------------------------------------------------------- /src/WP_CLI/CommandWithMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/WP_CLI/CommandWithMeta.php -------------------------------------------------------------------------------- /src/WP_CLI/CommandWithTerms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/entity-command/HEAD/src/WP_CLI/CommandWithTerms.php -------------------------------------------------------------------------------- /wp-cli.yml: -------------------------------------------------------------------------------- 1 | require: 2 | - entity-command.php 3 | --------------------------------------------------------------------------------