├── .ansible-lint ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── defaults └── main.yml ├── meta └── main.yml ├── molecule └── default │ ├── converge.yml │ ├── molecule.yml │ ├── requirements.yml │ └── xhprof-test.php ├── tasks ├── configure.yml └── main.yml ├── templates └── xhprof.ini.j2 └── vars ├── Debian.yml └── RedHat.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/molecule/default/requirements.yml -------------------------------------------------------------------------------- /molecule/default/xhprof-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/molecule/default/xhprof-test.php -------------------------------------------------------------------------------- /tasks/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/tasks/configure.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /templates/xhprof.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/templates/xhprof.ini.j2 -------------------------------------------------------------------------------- /vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/vars/Debian.yml -------------------------------------------------------------------------------- /vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-php-xhprof/HEAD/vars/RedHat.yml --------------------------------------------------------------------------------