{"id":13519068,"url":"https://github.com/johnbillion/ext","last_synced_at":"2025-03-31T12:31:06.106Z","repository":{"id":57000869,"uuid":"113783839","full_name":"johnbillion/ext","owner":"johnbillion","description":"WP-CLI command which checks the existence of PHP extensions needed to run WordPress.","archived":true,"fork":false,"pushed_at":"2018-11-14T10:00:51.000Z","size":5,"stargazers_count":71,"open_issues_count":6,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-25T17:09:20.409Z","etag":null,"topics":["wordpress","wp-cli","wp-cli-command","wp-cli-package"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/johnbillion.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-12-10T21:11:01.000Z","updated_at":"2023-10-03T15:01:17.000Z","dependencies_parsed_at":"2022-08-21T11:40:43.463Z","dependency_job_id":null,"html_url":"https://github.com/johnbillion/ext","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbillion%2Fext","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbillion%2Fext/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbillion%2Fext/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbillion%2Fext/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johnbillion","download_url":"https://codeload.github.com/johnbillion/ext/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246469058,"owners_count":20782658,"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":["wordpress","wp-cli","wp-cli-command","wp-cli-package"],"created_at":"2024-08-01T05:01:53.486Z","updated_at":"2025-03-31T12:31:05.848Z","avatar_url":"https://github.com/johnbillion.png","language":"PHP","readme":"# WP Extension Check\n\nWP-CLI command which checks the existence of PHP extensions needed to run WordPress.\n\nQuick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing) | [Support](#support)\n\n## Using\n\nThis package implements the following commands:\n\n### `wp ext required`\n\nChecks the existence of extensions that are _required_ to run WordPress.\n\nExample output:\n\n```\n$ wp ext required\n+-----------+-----------+\n| extension | installed |\n+-----------+-----------+\n| curl      | 1         |\n| date      | 1         |\n| dom       | 1         |\n| filter    | 1         |\n| ftp       | 1         |\n| gd        | 1         |\n| hash      | 1         |\n| iconv     | 1         |\n| json      | 1         |\n| libxml    | 1         |\n| mbstring  | 1         |\n| mysqli    | 1         |\n| openssl   | 1         |\n| pcre      | 1         |\n| posix     | 1         |\n| SimpleXML | 1         |\n| sockets   | 1         |\n| SPL       | 1         |\n| tokenizer | 1         |\n| xml       | 1         |\n| xmlreader | 1         |\n| zlib      | 1         |\n+-----------+-----------+\nSuccess: All required extensions are installed\n```\n\n### `wp ext recommended`\n\nChecks the existence of extensions that are _recommended_ to run WordPress.\n\nExample output:\n\n```\n$ wp ext recommended\n+-----------+-----------+\n| extension | installed |\n+-----------+-----------+\n| gmagick   |           |\n| ssh2      |           |\n| exif      | 1         |\n| imagick   | 1         |\n+-----------+-----------+\nError: Some recommended extensions are not installed\n```\n\n### `wp ext check`\n\nChecks the existence of all extensions that are either _required_ or _recommended_ to run WordPress.\n\nExample output:\n\n```\n$ wp ext check\n+-----------+-----------+\n| extension | installed |\n+-----------+-----------+\n| gmagick   |           |\n| ssh2      |           |\n| curl      | 1         |\n| date      | 1         |\n| dom       | 1         |\n| exif      | 1         |\n| filter    | 1         |\n| ftp       | 1         |\n| gd        | 1         |\n| hash      | 1         |\n| iconv     | 1         |\n| imagick   | 1         |\n| json      | 1         |\n| libxml    | 1         |\n| mbstring  | 1         |\n| mysqli    | 1         |\n| openssl   | 1         |\n| pcre      | 1         |\n| posix     | 1         |\n| SimpleXML | 1         |\n| sockets   | 1         |\n| SPL       | 1         |\n| tokenizer | 1         |\n| xml       | 1         |\n| xmlreader | 1         |\n| zlib      | 1         |\n+-----------+-----------+\nError: Some extensions are not installed\n```\n\n## Installing\n\nInstalling this package requires WP-CLI's latest stable release. Update to the latest stable release with `wp cli update`.\n\nOnce you've done so, you can install this package with:\n\n    wp package install git@github.com:johnbillion/ext.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/johnbillion/ext/issues) 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/johnbillion/ext/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/johnbillion/ext/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","funding_links":[],"categories":["PHP"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnbillion%2Fext","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohnbillion%2Fext","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnbillion%2Fext/lists"}