|
| 1 | + |
| 2 | +{ |
| 3 | + "name": "phpredis/phpredis", |
| 4 | + "type": "php-ext", |
| 5 | + "license": "PHP-3.01", |
| 6 | + "description": "A PHP extension for Redis", |
| 7 | + "require": { |
| 8 | + "php": ">= 7.4.0" |
| 9 | + }, |
| 10 | + "php-ext": { |
| 11 | + "extension-name": "redis", |
| 12 | + "configure-options": [ |
| 13 | + { |
| 14 | + "name": "enable-redis", |
| 15 | + "description": "Enable redis support" |
| 16 | + }, |
| 17 | + { |
| 18 | + "name": "disable-redis-session", |
| 19 | + "description": "Disable session support" |
| 20 | + }, |
| 21 | + { |
| 22 | + "name": "disable-redis-json", |
| 23 | + "description": "Disable json serializer support" |
| 24 | + }, |
| 25 | + { |
| 26 | + "name": "enable-redis-igbinary", |
| 27 | + "description": "Enable igbinary serializer support" |
| 28 | + }, |
| 29 | + { |
| 30 | + "name": "enable-redis-msgpack", |
| 31 | + "description": "Enable msgpack serializer support" |
| 32 | + }, |
| 33 | + { |
| 34 | + "name": "enable-redis-lzf", |
| 35 | + "description": "Enable lzf compression support" |
| 36 | + }, |
| 37 | + { |
| 38 | + "name": "with-liblzf", |
| 39 | + "description": "Use system liblzf", |
| 40 | + "needs-value": true |
| 41 | + }, |
| 42 | + { |
| 43 | + "name": "enable-redis-zstd", |
| 44 | + "description": "Enable Zstd compression support" |
| 45 | + }, |
| 46 | + { |
| 47 | + "name": "with-libzstd", |
| 48 | + "description": "Use system libzstd", |
| 49 | + "needs-value": true |
| 50 | + }, |
| 51 | + { |
| 52 | + "name": "enable-redis-lz4", |
| 53 | + "description": "Enable lz4 compression support" |
| 54 | + }, |
| 55 | + { |
| 56 | + "name": "with-liblz4", |
| 57 | + "description": "Use system liblz4", |
| 58 | + "needs-value": true |
| 59 | + } |
| 60 | + ] |
| 61 | + } |
| 62 | +} |
0 commit comments