Skip to content

Commit

Permalink
Updated documentation after adding support for configurable php version
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Dyson committed Feb 20, 2017
1 parent 22b4903 commit 79a77f3
Showing 1 changed file with 25 additions and 18 deletions.
43 changes: 25 additions & 18 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Example

```
php_version: '7.1'
php_ppa: 'ppa:ondrej/php'
php_fpm_conf_template: 'example.com.php-fpm.conf.j2'
php_fpm_pool_templates:
Expand All @@ -11,24 +12,24 @@ php_fpm_pool_templates:
- name: 'example'
template: 'example.com.php-fpm-pool.conf.j2'
php_packages:
- name: 'php7.0-common'
- name: 'php7.0-cli'
- name: 'php7.0-dev'
- name: 'php7.0-fpm'
- name: 'php7.0-bcmath'
- name: 'php7.0-bz2'
- name: 'php7.0-curl'
- name: 'php7.0-gd'
- name: 'php7.0-imap'
- name: 'php7.0-intl'
- name: 'php7.0-ldap'
- name: 'php7.0-mbstring'
- name: 'php7.0-mcrypt'
- name: 'php7.0-mysql'
- name: 'php7.0-soap'
- name: 'php7.0-tidy'
- name: 'php7.0-xmlrpc'
- name: 'php7.0-zip'
- name: 'common'
- name: 'cli'
- name: 'dev'
- name: 'fpm'
- name: 'bcmath'
- name: 'bz2'
- name: 'curl'
- name: 'gd'
- name: 'imap'
- name: 'intl'
- name: 'ldap'
- name: 'mbstring'
- name: 'mcrypt'
- name: 'mysql'
- name: 'soap'
- name: 'tidy'
- name: 'xmlrpc'
- name: 'zip'
php_pecl_extensions:
- name: 'igbinary'
- name: 'amfext'
Expand All @@ -47,6 +48,12 @@ php_cli_ini:

Available variables are listed below, along with default values (see [defaults/main.yml](/defaults/main.yml)):

```
php_version: '7.0'
```

The PHP package version you want to install.

```
php_ppa:
```
Expand Down

0 comments on commit 79a77f3

Please sign in to comment.