├── .editorconfig ├── .envrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── copilot-instructions.md ├── lock.yml └── workflows │ ├── ci.yml │ ├── conventional-commits.yml │ ├── copilot-setup-steps.yml │ ├── prevent-file-change.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .markdownlint-cli2.yaml ├── .mdlrc ├── .overcommit.yml ├── .release-please-manifest.json ├── .vscode └── extensions.json ├── .yamllint ├── Berksfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TESTING.md ├── UPGRADING.md ├── chefignore ├── documentation ├── .gitkeep ├── php_fpm_pool.md ├── php_ini.md ├── php_install.md ├── php_pear.md └── php_pear_channel.md ├── kitchen.dokken.yml ├── kitchen.exec.yml ├── kitchen.global.yml ├── kitchen.yml ├── libraries └── helpers.rb ├── metadata.rb ├── release-please-config.json ├── renovate.json ├── resources ├── fpm_pool.rb ├── ini.rb ├── install.rb ├── pear.rb └── pear_channel.rb ├── spec ├── libraries │ └── helpers_spec.rb └── spec_helper.rb ├── templates ├── centos │ └── php.ini.erb ├── debian │ └── php.ini.erb ├── default │ ├── extension.ini.erb │ ├── fpm-pool.conf.erb │ └── php.ini.erb ├── redhat │ └── php.ini.erb └── ubuntu │ └── php.ini.erb └── test ├── cookbooks └── test │ ├── metadata.rb │ └── recipes │ ├── community.rb │ └── default.rb └── integration ├── resource └── inspec │ └── php_spec.rb └── resource_community └── inspec └── php_spec.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use chefworkstation 2 | export KITCHEN_GLOBAL_YAML=kitchen.global.yml 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @sous-chefs/maintainers 2 | -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/conventional-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.github/workflows/conventional-commits.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/prevent-file-change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.github/workflows/prevent-file-change.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.mdlrc -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "10.3.0" 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/.yamllint -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/TESTING.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/chefignore -------------------------------------------------------------------------------- /documentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/php_fpm_pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/documentation/php_fpm_pool.md -------------------------------------------------------------------------------- /documentation/php_ini.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/documentation/php_ini.md -------------------------------------------------------------------------------- /documentation/php_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/documentation/php_install.md -------------------------------------------------------------------------------- /documentation/php_pear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/documentation/php_pear.md -------------------------------------------------------------------------------- /documentation/php_pear_channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/documentation/php_pear_channel.md -------------------------------------------------------------------------------- /kitchen.dokken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/kitchen.dokken.yml -------------------------------------------------------------------------------- /kitchen.exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/kitchen.exec.yml -------------------------------------------------------------------------------- /kitchen.global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/kitchen.global.yml -------------------------------------------------------------------------------- /kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/kitchen.yml -------------------------------------------------------------------------------- /libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/libraries/helpers.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/metadata.rb -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/release-please-config.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/renovate.json -------------------------------------------------------------------------------- /resources/fpm_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/resources/fpm_pool.rb -------------------------------------------------------------------------------- /resources/ini.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/resources/ini.rb -------------------------------------------------------------------------------- /resources/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/resources/install.rb -------------------------------------------------------------------------------- /resources/pear.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/resources/pear.rb -------------------------------------------------------------------------------- /resources/pear_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/resources/pear_channel.rb -------------------------------------------------------------------------------- /spec/libraries/helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/spec/libraries/helpers_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/centos/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/templates/centos/php.ini.erb -------------------------------------------------------------------------------- /templates/debian/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/templates/debian/php.ini.erb -------------------------------------------------------------------------------- /templates/default/extension.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/templates/default/extension.ini.erb -------------------------------------------------------------------------------- /templates/default/fpm-pool.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/templates/default/fpm-pool.conf.erb -------------------------------------------------------------------------------- /templates/default/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/templates/default/php.ini.erb -------------------------------------------------------------------------------- /templates/redhat/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/templates/redhat/php.ini.erb -------------------------------------------------------------------------------- /templates/ubuntu/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/templates/ubuntu/php.ini.erb -------------------------------------------------------------------------------- /test/cookbooks/test/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/test/cookbooks/test/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/community.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/test/cookbooks/test/recipes/community.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/test/cookbooks/test/recipes/default.rb -------------------------------------------------------------------------------- /test/integration/resource/inspec/php_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/test/integration/resource/inspec/php_spec.rb -------------------------------------------------------------------------------- /test/integration/resource_community/inspec/php_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/php/HEAD/test/integration/resource_community/inspec/php_spec.rb --------------------------------------------------------------------------------