{"id":16060781,"url":"https://github.com/geerlingguy/ansible-role-php-xdebug","last_synced_at":"2025-04-06T10:13:52.688Z","repository":{"id":15822585,"uuid":"18562358","full_name":"geerlingguy/ansible-role-php-xdebug","owner":"geerlingguy","description":"Ansible Role - PHP Xdebug","archived":false,"fork":false,"pushed_at":"2025-01-31T03:25:35.000Z","size":87,"stargazers_count":43,"open_issues_count":0,"forks_count":50,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-30T09:07:59.378Z","etag":null,"topics":["ansible","debug","debugger","php","role","xdebug"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/geerlingguy/php-xdebug/","language":"Jinja","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"nicity/CppTools","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/geerlingguy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"geerlingguy","patreon":"geerlingguy"}},"created_at":"2014-04-08T14:52:09.000Z","updated_at":"2025-01-31T03:25:39.000Z","dependencies_parsed_at":"2024-01-25T04:46:41.660Z","dependency_job_id":"33983788-4d2e-4608-95a7-baac1ac588c8","html_url":"https://github.com/geerlingguy/ansible-role-php-xdebug","commit_stats":{"total_commits":119,"total_committers":12,"mean_commits":9.916666666666666,"dds":"0.23529411764705888","last_synced_commit":"3172686010770d754a44c131bebabce78032e59c"},"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-php-xdebug","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-php-xdebug/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-php-xdebug/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-php-xdebug/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geerlingguy","download_url":"https://codeload.github.com/geerlingguy/ansible-role-php-xdebug/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247464224,"owners_count":20942970,"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":["ansible","debug","debugger","php","role","xdebug"],"created_at":"2024-10-09T04:06:22.605Z","updated_at":"2025-04-06T10:13:52.661Z","avatar_url":"https://github.com/geerlingguy.png","language":"Jinja","funding_links":["https://github.com/sponsors/geerlingguy","https://patreon.com/geerlingguy"],"categories":[],"sub_categories":[],"readme":"# Ansible Role: PHP-XDebug\n\n[![CI](https://github.com/geerlingguy/ansible-role-php-xdebug/actions/workflows/ci.yml/badge.svg)](https://github.com/geerlingguy/ansible-role-php-xdebug/actions/workflows/ci.yml)\n\nInstalls PHP [XDebug](http://xdebug.org/) on Linux servers.\n\n## Requirements\n\nPrior to running this role, make sure the `php-devel` and `@Development Tools` (for RHEL/CentOS) or `php5-dev` + `build-essential` packages (for Debian/Ubuntu) are present on the system, as they are required for the build of Xdebug.\n\n## Role Variables\n\nAvailable variables are listed below, along with default values (see `defaults/main.yml`):\n\n    workspace: /root\n\nWhere Xdebug setup files will be downloaded and built.\n\n    php_xdebug_version: 3.3.2\n\nThe version of Xdebug to be installed (see [Updates](https://xdebug.org/updates.php) for a current listing).\n\n    php_xdebug_default_enable: 1\n    php_xdebug_coverage_enable: 1\n\nWhether to enable XDebug coverage and default exception handling or not. Disable these for slightly improved PHP performance, enable these to use XDebug to the fullest extent.\n\n    php_xdebug_module_path: /usr/lib64/php/modules\n\nThe path where `xdebug.so` will be installed.\n\n    php_xdebug_remote_enable: \"false\"\n\nWhether remote debugging is enabled.\n\n    php_xdebug_remote_connect_back: \"false\"\n\nIf this is set to true, Xdebug will respond to any request from any IP address; use only for local development on non-public installations!\n\n    php_xdebug_remote_host: localhost\n    php_xdebug_remote_port: \"9000\"\n\nThe host and port on which Xdebug will listen.\n\n    php_xdebug_remote_log: /tmp/xdebug.log\n\nThe location of the xdebug log (useful if you're having trouble connecting).\n\n    php_xdebug_idekey: sublime.xdebug\n\nThe IDE key to use in the URL when making Xdebug requests (e.g. `http://example.local/?XDEBUG_SESSION_START=sublime.xdebug`).\n\n    php_xdebug_max_nesting_level: 256\n\nThe maximimum function nesting level before Xdebug bails and throws a fatal exception.\n\n    php_xdebug_cli_disable: false\n\n(Debian/Ubuntu ONLY) Disable xdebug for the CLI SAPI.\n\n## Dependencies\n\n  - geerlingguy.php\n\n## Example Playbook\n\n    - hosts: webservers\n      roles:\n        - { role: geerlingguy.php-xdebug }\n\n## License\n\nMIT / BSD\n\n## Author Information\n\nThis role was created in 2014 by [Jeff Geerling](http://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeerlingguy%2Fansible-role-php-xdebug","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeerlingguy%2Fansible-role-php-xdebug","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeerlingguy%2Fansible-role-php-xdebug/lists"}