From 8eabb9eb31bb340bbc62025007d67cb25b95d1bb Mon Sep 17 00:00:00 2001 From: izosik Date: Wed, 1 Nov 2023 13:41:14 +0100 Subject: [PATCH] feat: add memcached --- README.md | 41 ++++++++++++++++++++++------------------- src/group_vars/base.yml | 1 + 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 8436280..940c2be 100644 --- a/README.md +++ b/README.md @@ -25,26 +25,27 @@ Repository contains dist folder with generated basic PHP images and source code, Enabled extensions by default: -| Extension | Description | Type | -| ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | -| [intl](https://www.php.net/manual/en/book.intl.php) | Internationalization functions | native | -| [pcntl](https://www.php.net/manual/en/book.pcntl.php) | Process control | native | -| [sockets](https://www.php.net/manual/en/book.sockets.php) | Socket communication functions | native | -| [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | PostgreSQL functions | native | -| [pdo_mysql](https://www.php.net/manual/en/ref.pdo-mysql.php) | Mysql functions | native | +| Extension | Description | Type | +|--------------------------------------------------------------|---------------------------------------------------------------------------------|--------| +| [intl](https://www.php.net/manual/en/book.intl.php) | Internationalization functions | native | +| [pcntl](https://www.php.net/manual/en/book.pcntl.php) | Process control | native | +| [sockets](https://www.php.net/manual/en/book.sockets.php) | Socket communication functions | native | +| [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | PostgreSQL functions | native | +| [pdo_mysql](https://www.php.net/manual/en/ref.pdo-mysql.php) | Mysql functions | native | | [opcache](https://www.php.net/manual/en/book.opcache.php) | Improves PHP performance by storing precompiled script bytecode in shared memory | native | -| [zip](https://www.php.net/manual/en/book.zip.php) | Read/write functions for ZIP archives | native | -| [bcmath](https://www.php.net/manual/en/book.bc.php) | For arbitrary precision mathematics | native | -| [exif](https://www.php.net/manual/en/book.exif.php) | Exchangeable image information | native | -| [gd](https://www.php.net/manual/en/book.image.php) | Image processing and manipulation library | native | -| [soap](https://www.php.net/manual/en/book.soap.php) | SOAP (Simple Object Access Protocol) functions | native | -| [redis](https://pecl.php.net/package/redis) | Functions for interfacing with Redis | pecl | -| [decimal](https://pecl.php.net/package/decimal) | Arbitrary precision floating-point decimal | pecl | -| [imagick](https://pecl.php.net/package/imagick) | ImageMagick library for image manipulation | pecl | -| [rdkafka](https://pecl.php.net/package/rdkafka) | Kafka client library for PHP | pecl | -| [amqp](https://pecl.php.net/package/amqp) | Advanced Message Queuing Protocol (AMQP) library | pecl | -| [protobuf](https://pecl.php.net/package/protobuf) | Protocol Buffers serialization format library | pecl | -| [yaml](https://pecl.php.net/package/yaml) | YAML (YAML Ain't Markup Language) library | pecl | +| [zip](https://www.php.net/manual/en/book.zip.php) | Read/write functions for ZIP archives | native | +| [bcmath](https://www.php.net/manual/en/book.bc.php) | For arbitrary precision mathematics | native | +| [exif](https://www.php.net/manual/en/book.exif.php) | Exchangeable image information | native | +| [gd](https://www.php.net/manual/en/book.image.php) | Image processing and manipulation library | native | +| [soap](https://www.php.net/manual/en/book.soap.php) | SOAP (Simple Object Access Protocol) functions | native | +| [redis](https://pecl.php.net/package/redis) | Functions for interfacing with Redis | pecl | +| [memcached](https://pecl.php.net/package/memcached) | Functions for interfacing with Memcached | pecl | +| [decimal](https://pecl.php.net/package/decimal) | Arbitrary precision floating-point decimal | pecl | +| [imagick](https://pecl.php.net/package/imagick) | ImageMagick library for image manipulation | pecl | +| [rdkafka](https://pecl.php.net/package/rdkafka) | Kafka client library for PHP | pecl | +| [amqp](https://pecl.php.net/package/amqp) | Advanced Message Queuing Protocol (AMQP) library | pecl | +| [protobuf](https://pecl.php.net/package/protobuf) | Protocol Buffers serialization format library | pecl | +| [yaml](https://pecl.php.net/package/yaml) | YAML (YAML Ain't Markup Language) library | pecl |
@@ -87,12 +88,14 @@ ext_native_enabled: ext_pecl_enabled: - redis + - memcached - decimal - imagick - rdkafka - amqp - protobuf - yaml + ```
diff --git a/src/group_vars/base.yml b/src/group_vars/base.yml index 41b37f2..88b68d9 100644 --- a/src/group_vars/base.yml +++ b/src/group_vars/base.yml @@ -91,6 +91,7 @@ ext_native_enabled: ext_pecl_enabled: - redis + - memcached - decimal - imagick - rdkafka