Skip to content

Commit 855d1a6

Browse files
author
izosik
committed
feat: add memcached
1 parent 95bb061 commit 855d1a6

File tree

2 files changed

+23
-19
lines changed

2 files changed

+23
-19
lines changed

README.md

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,27 @@ Repository contains dist folder with generated basic PHP images and source code,
2525

2626
Enabled extensions by default:
2727

28-
| Extension | Description | Type |
29-
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------ |
30-
| [intl](https://www.php.net/manual/en/book.intl.php) | Internationalization functions | native |
31-
| [pcntl](https://www.php.net/manual/en/book.pcntl.php) | Process control | native |
32-
| [sockets](https://www.php.net/manual/en/book.sockets.php) | Socket communication functions | native |
33-
| [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | PostgreSQL functions | native |
34-
| [pdo_mysql](https://www.php.net/manual/en/ref.pdo-mysql.php) | Mysql functions | native |
28+
| Extension | Description | Type |
29+
|--------------------------------------------------------------|----------------------------------------------------------------------------------|--------|
30+
| [intl](https://www.php.net/manual/en/book.intl.php) | Internationalization functions | native |
31+
| [pcntl](https://www.php.net/manual/en/book.pcntl.php) | Process control | native |
32+
| [sockets](https://www.php.net/manual/en/book.sockets.php) | Socket communication functions | native |
33+
| [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | PostgreSQL functions | native |
34+
| [pdo_mysql](https://www.php.net/manual/en/ref.pdo-mysql.php) | Mysql functions | native |
3535
| [opcache](https://www.php.net/manual/en/book.opcache.php) | Improves PHP performance by storing precompiled script bytecode in shared memory | native |
36-
| [zip](https://www.php.net/manual/en/book.zip.php) | Read/write functions for ZIP archives | native |
37-
| [bcmath](https://www.php.net/manual/en/book.bc.php) | For arbitrary precision mathematics | native |
38-
| [exif](https://www.php.net/manual/en/book.exif.php) | Exchangeable image information | native |
39-
| [gd](https://www.php.net/manual/en/book.image.php) | Image processing and manipulation library | native |
40-
| [soap](https://www.php.net/manual/en/book.soap.php) | SOAP (Simple Object Access Protocol) functions | native |
41-
| [redis](https://pecl.php.net/package/redis) | Functions for interfacing with Redis | pecl |
42-
| [decimal](https://pecl.php.net/package/decimal) | Arbitrary precision floating-point decimal | pecl |
43-
| [imagick](https://pecl.php.net/package/imagick) | ImageMagick library for image manipulation | pecl |
44-
| [rdkafka](https://pecl.php.net/package/rdkafka) | Kafka client library for PHP | pecl |
45-
| [amqp](https://pecl.php.net/package/amqp) | Advanced Message Queuing Protocol (AMQP) library | pecl |
46-
| [protobuf](https://pecl.php.net/package/protobuf) | Protocol Buffers serialization format library | pecl |
47-
| [yaml](https://pecl.php.net/package/yaml) | YAML (YAML Ain't Markup Language) library | pecl |
36+
| [zip](https://www.php.net/manual/en/book.zip.php) | Read/write functions for ZIP archives | native |
37+
| [bcmath](https://www.php.net/manual/en/book.bc.php) | For arbitrary precision mathematics | native |
38+
| [exif](https://www.php.net/manual/en/book.exif.php) | Exchangeable image information | native |
39+
| [gd](https://www.php.net/manual/en/book.image.php) | Image processing and manipulation library | native |
40+
| [soap](https://www.php.net/manual/en/book.soap.php) | SOAP (Simple Object Access Protocol) functions | native |
41+
| [redis](https://pecl.php.net/package/redis) | Functions for interfacing with Redis | pecl |
42+
| [memcached](https://pecl.php.net/package/memcached) | Functions for interfacing with Memcached | pecl |
43+
| [decimal](https://pecl.php.net/package/decimal) | Arbitrary precision floating-point decimal | pecl |
44+
| [imagick](https://pecl.php.net/package/imagick) | ImageMagick library for image manipulation | pecl |
45+
| [rdkafka](https://pecl.php.net/package/rdkafka) | Kafka client library for PHP | pecl |
46+
| [amqp](https://pecl.php.net/package/amqp) | Advanced Message Queuing Protocol (AMQP) library | pecl |
47+
| [protobuf](https://pecl.php.net/package/protobuf) | Protocol Buffers serialization format library | pecl |
48+
| [yaml](https://pecl.php.net/package/yaml) | YAML (YAML Ain't Markup Language) library | pecl |
4849

4950
<br>
5051

@@ -87,12 +88,14 @@ ext_native_enabled:
8788

8889
ext_pecl_enabled:
8990
- redis
91+
- memcached
9092
- decimal
9193
- imagick
9294
- rdkafka
9395
- amqp
9496
- protobuf
9597
- yaml
98+
9699
```
97100

98101
<br>

src/group_vars/base.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ ext_native_enabled:
9191

9292
ext_pecl_enabled:
9393
- redis
94+
- memcached
9495
- decimal
9596
- imagick
9697
- rdkafka

0 commit comments

Comments
 (0)