Browse Source

This commit adds the php-json package.

The json features of php have been moved to a separate package in the following distributions:
  - Debian >= 8 (jessie)
  - Ubuntu >= 13.04

Changes:
  - Added json.sls
  - Updated map.jinja
  - Updated README.md
tags/v0.34.0
Nicholas J 10 years ago
parent
commit
0d0cf6827d
3 changed files with 13 additions and 0 deletions
  1. +5
    -0
      README.rst
  2. +6
    -0
      php/json.sls
  3. +2
    -0
      php/map.jinja

+ 5
- 0
README.rst View File



Installs the php-imap package. Installs the php-imap package.


``php.json``
------------

Installs the php-json package.

``php.ldap`` ``php.ldap``
------------ ------------



+ 6
- 0
php/json.sls View File

{% from "php/map.jinja" import php with context %}

php-json:
pkg:
- installed
- name: {{ php.json_pkg }}

+ 2
- 0
php/map.jinja View File

'curl_pkg': 'php5-curl', 'curl_pkg': 'php5-curl',
'fpm_pkg': 'php5-fpm', 'fpm_pkg': 'php5-fpm',
'gd_pkg': 'php5-gd', 'gd_pkg': 'php5-gd',
'json_pkg': 'php5-json',
'mbstring_pkg': 'php5', 'mbstring_pkg': 'php5',
'mcrypt_pkg': 'php5-mcrypt', 'mcrypt_pkg': 'php5-mcrypt',
'memcache_pkg': 'php5-memcache', 'memcache_pkg': 'php5-memcache',
'curl_pkg': 'curl', 'curl_pkg': 'curl',
'fpm_pkg': 'php-fpm', 'fpm_pkg': 'php-fpm',
'gd_pkg': 'php-gd', 'gd_pkg': 'php-gd',
'json_pkg': 'php-common',
'mbstring_pkg': 'php-mbstring', 'mbstring_pkg': 'php-mbstring',
'mcrypt_pkg': 'php-mcrypt', 'mcrypt_pkg': 'php-mcrypt',
'memcache_pkg': 'php-pecl-memcache', 'memcache_pkg': 'php-pecl-memcache',

Loading…
Cancel
Save