summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2026-04-22 15:12:51 +0200
committerRemi Collet <remi@php.net>2026-04-22 15:12:51 +0200
commit41fb809c25ecfd75ac934f33309000d7c26e2166 (patch)
tree62adaee2351c39edf03be578ff1496c320b07ebf /composer.json
parent25f32ebf1ed235517b1283686359945e98402d2d (diff)
add pie virtual provides (not yet published)HEADmaster
drop pear/pecl dependency sources from github
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..b775e56
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,31 @@
+{
+ "name": "websupport-sk/pecl-memcache",
+ "type": "php-ext",
+ "license": "PHP-3.0",
+ "description": "PHP Extension - Memcache module with support of newer PHP 7.x and PHP 8.x",
+ "require": {
+ "php": ">= 8.0.0"
+ },
+ "php-ext": {
+ "extension-name": "memcache",
+ "configure-options": [
+ {
+ "name": "enable-memcache",
+ "description": "Enable memcache support"
+ },
+ {
+ "name": "disable-memcache-session",
+ "description": "Disable memcache session handler support"
+ },
+ {
+ "name": "with-zlib-dir",
+ "description": "Set the path to ZLIB install prefix.",
+ "needs-value": true
+ },
+ {
+ "name": "enable-debug",
+ "description": "compile with debugging symbols"
+ }
+ ]
+ }
+}