{"id":16060768,"url":"https://github.com/geerlingguy/ansible-role-php-xhprof","last_synced_at":"2025-10-12T22:49:25.658Z","repository":{"id":22685019,"uuid":"26028717","full_name":"geerlingguy/ansible-role-php-xhprof","owner":"geerlingguy","description":"Ansible Role - PHP XHProf","archived":false,"fork":false,"pushed_at":"2025-01-31T03:25:36.000Z","size":65,"stargazers_count":14,"open_issues_count":0,"forks_count":17,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-02T08:12:54.787Z","etag":null,"topics":["ansible","code-analysis","php","profile","role","tideways","xhprof"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/geerlingguy/php-xhprof/","language":"PHP","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/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-10-31T18:43:17.000Z","updated_at":"2025-01-31T03:25:40.000Z","dependencies_parsed_at":"2024-01-25T04:46:51.074Z","dependency_job_id":"b97ebbad-dde5-4379-9467-ef7f4b8b0182","html_url":"https://github.com/geerlingguy/ansible-role-php-xhprof","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/geerlingguy/ansible-role-php-xhprof","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-php-xhprof","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-php-xhprof/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-php-xhprof/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-php-xhprof/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geerlingguy","download_url":"https://codeload.github.com/geerlingguy/ansible-role-php-xhprof/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-php-xhprof/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279013280,"owners_count":26085250,"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","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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","code-analysis","php","profile","role","tideways","xhprof"],"created_at":"2024-10-09T04:06:21.175Z","updated_at":"2025-10-12T22:49:25.634Z","avatar_url":"https://github.com/geerlingguy.png","language":"PHP","funding_links":["https://github.com/sponsors/geerlingguy","https://patreon.com/geerlingguy"],"categories":[],"sub_categories":[],"readme":"# Ansible Role: PHP-XHProf\n\n[![CI](https://github.com/geerlingguy/ansible-role-php-xhprof/actions/workflows/ci.yml/badge.svg)](https://github.com/geerlingguy/ansible-role-php-xhprof/actions/workflows/ci.yml)\n\nInstalls PHP [XHProf](http://php.net/manual/en/book.xhprof.php) on Linux servers.\n\n\u003e **Note**: The XHProf extension has been on life support since Facebook abandoned active development around 2015. There is a better-maintained fork that works on the latest PHP versions called Tideways, and there's an Ansible role for it—please check out [`geerlingguy.php-tideways`](https://github.com/geerlingguy/ansible-role-php-tideways) if you need to support modern PHP versions.\n\n## Requirements\n\nNone.\n\n## Role Variables\n\nAvailable variables are listed below, along with default values (see `defaults/main.yml`):\n\n    workspace: /root\n\nWhere XHProf setup files will be downloaded and built.\n\n    xhprof_version: \"2.1.2\"\n\nThe version of XHProf to download.\n\n    xhprof_download_url: https://github.com/longxinH/xhprof/archive/v{{ xhprof_version }}.zip\n    xhprof_download_folder_name: xhprof-{{ xhprof_version }}\n\nThe URL from which XHProf will be downloaded.\n\n    xhprof_output_dir: /tmp\n\nDirectory where XHProf runs are stored.\n\n    php_xhprof_lib_dir: /usr/share/php/xhprof_lib\n\nDirectory where the XHProf PHP library is stored.\n\n    php_xhprof_html_dir: /usr/share/php/xhprof_html\n\nDirectory where the XHProf UI is stored.\n\n## Dependencies\n\n  - geerlingguy.php\n\n## Example Playbook\n\n    - hosts: webservers\n      roles:\n        - geerlingguy.php-xhprof\n\n## License\n\nMIT / BSD\n\n## Author Information\n\nThis role was created in 2014 by [Jeff Geerling](https://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-xhprof","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeerlingguy%2Fansible-role-php-xhprof","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeerlingguy%2Fansible-role-php-xhprof/lists"}