Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add memcached #31

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 22 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

<br>

Expand Down Expand Up @@ -87,12 +88,14 @@ ext_native_enabled:

ext_pecl_enabled:
- redis
- memcached
- decimal
- imagick
- rdkafka
- amqp
- protobuf
- yaml

```

<br>
Expand Down
1 change: 1 addition & 0 deletions src/group_vars/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ ext_native_enabled:

ext_pecl_enabled:
- redis
- memcached
- decimal
- imagick
- rdkafka
Expand Down
Loading