summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2026-03-13 09:40:51 +0100
committerRemi Collet <remi@php.net>2026-03-13 09:40:51 +0100
commit29138bcdba985205578fe79a5c5176121eefbff1 (patch)
tree42f81af6c7959157f7381cd0d4e2d272fa32334e /composer.json
parentc9c87abe9a0bf7b045e989ce9e9fc16ac1cc97dc (diff)
drop pear/pecl dependencyHEADmaster
sources from github
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json55
1 files changed, 55 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..2049c93
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,55 @@
+{
+ "name": "m6w6/ext-http",
+ "type": "php-ext",
+ "license": "BSD-2-Clause",
+ "description": "Extended HTTP support",
+ "require": {
+ "php": ">= 8.0.0",
+ "ext-raphf": "*"
+ },
+ "php-ext": {
+ "extension-name": "http",
+ "configure-options": [
+ {
+ "name": "with-http-zlib-dir",
+ "description": "where to find zlib",
+ "needs-value": true
+ },
+ {
+ "name": "with-http-libcurl-dir",
+ "description": "where to find libcurl",
+ "needs-value": true
+ },
+ {
+ "name": "with-http-libevent-dir",
+ "description": "where to find libevent",
+ "needs-value": true
+ },
+ {
+ "name": "with-http-libicu-dir",
+ "description": "where to find libicu",
+ "needs-value": true
+ },
+ {
+ "name": "with-http-libidn2-dir",
+ "description": "where to find libidn2",
+ "needs-value": true
+ },
+ {
+ "name": "with-http-libidn-dir",
+ "description": "where to find libidn",
+ "needs-value": true
+ },
+ {
+ "name": "with-http-libidnkit2-dir",
+ "description": "where to find libidnkit2",
+ "needs-value": true
+ },
+ {
+ "name": "with-http-libidnkit-dir",
+ "description": "where to find libidnkit",
+ "needs-value": true
+ }
+ ]
+ }
+}