Skip to content

Commit 7227982

Browse files
asgrimm6w6
authored andcommitted
Added a composer.json to enable support for PIE
1 parent 899f0d5 commit 7227982

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

composer.json

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"name": "php-memcached/php-memcached",
3+
"type": "php-ext",
4+
"license": "PHP-3.01",
5+
"description": "memcached extension based on libmemcached library ",
6+
"require": {
7+
"php": ">= 7.0.0"
8+
},
9+
"suggest": {
10+
"ext-igbinary": "igbinary is a faster and more compact binary serializer for PHP data structures.",
11+
"ext-msgpack": "msgpack is a faster and more compact data structure representation that is interoperable with msgpack implementations for other languages."
12+
},
13+
"php-ext": {
14+
"extension-name": "memcached",
15+
"configure-options": [
16+
{
17+
"name": "enable-memcached",
18+
"description": "Enable memcached support"
19+
},
20+
{
21+
"name": "with-libmemcached-dir",
22+
"description": "Set the path to libmemcached install prefix.",
23+
"needs-value": true
24+
},
25+
{
26+
"name": "enable-memcached-session",
27+
"description": "Enable memcached session handler support"
28+
},
29+
{
30+
"name": "enable-memcached-igbinary",
31+
"description": "Enable memcached igbinary serializer support"
32+
},
33+
{
34+
"name": "enable-memcached-json",
35+
"description": "Enable memcached json serializer support"
36+
},
37+
{
38+
"name": "enable-memcached-msgpack",
39+
"description": "Enable memcached msgpack serializer support"
40+
},
41+
{
42+
"name": "enable-memcached-sasl",
43+
"description": "Enable memcached sasl support"
44+
},
45+
{
46+
"name": "enable-memcached-protocol",
47+
"description": "Enable memcached protocol support"
48+
},
49+
{
50+
"name": "with-system-fastlz",
51+
"description": "Use system FastLZ library"
52+
},
53+
{
54+
"name": "with-zstd",
55+
"description": "Use system zstd library"
56+
},
57+
{
58+
"name": "with-zlib-dir",
59+
"description": "Set the path to ZLIB install prefix.",
60+
"needs-value": true
61+
},
62+
{
63+
"name": "enable-debug",
64+
"description": "Compile with debugging symbols"
65+
}
66+
]
67+
}
68+
}

0 commit comments

Comments
 (0)