Merge pull request #165 from Yoda-BZH/master

Add msgpack and igbinary packages
This commit is contained in:
Niels Abspoel 2019-03-21 20:04:21 +01:00 committed by GitHub
commit df0224fd35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 0 deletions

View File

@ -429,6 +429,11 @@ Configures the hhvm repo for debian/ubuntu
Manages the php-hhvm service.
``php.ng.igbinary``
------------------
Installs the php-igbinary package.
``php.ng.imagick``
------------------
@ -507,6 +512,11 @@ Installs the php-mongo package.
Installs the php-mongodb package.
``php.ng.msgpack``
--------------------
Installs the php-msgpack package.
``php.ng.mysql``
----------------

2
php/ng/igbinary.sls Normal file
View File

@ -0,0 +1,2 @@
{% set state = 'igbinary' %}
{% include "php/ng/installed.jinja" %}

View File

@ -2203,6 +2203,7 @@
'gettext': 'php' + phpng_version,
'gmp': 'php' + phpng_version + '-gmp',
'hhvm': 'hhvm',
'igbinary': 'php-igbinary',
'imagick': 'php-imagick',
'imap': 'php' + phpng_version + '-imap',
'intl': 'php' + phpng_version + '-intl',
@ -2217,6 +2218,7 @@
'memcached': 'php-memcached',
'mongo': 'php-mongo',
'mongodb': 'php-mongodb',
'msgpack': 'php-msgpack',
'mysql': 'php' + phpng_version + '-mysql',
'mysqlnd': 'php' + phpng_version + '-mysql',
'net-smtp': 'php-net-smtp',

2
php/ng/msgpack.sls Normal file
View File

@ -0,0 +1,2 @@
{% set state = 'msgpack' %}
{% include "php/ng/installed.jinja" %}