diff --git a/bin/libbrotlicommon.1.dylib b/bin/libbrotlicommon.1.dylib new file mode 100644 index 0000000..7cac2e0 Binary files /dev/null and b/bin/libbrotlicommon.1.dylib differ diff --git a/bin/libbrotlidec.1.dylib b/bin/libbrotlidec.1.dylib new file mode 100644 index 0000000..eb56a9e Binary files /dev/null and b/bin/libbrotlidec.1.dylib differ diff --git a/bin/libcrypto.1.1.dylib b/bin/libcrypto.1.1.dylib new file mode 100644 index 0000000..f06229e Binary files /dev/null and b/bin/libcrypto.1.1.dylib differ diff --git a/bin/libcrypto.3.dylib b/bin/libcrypto.3.dylib new file mode 100644 index 0000000..04c2a7a Binary files /dev/null and b/bin/libcrypto.3.dylib differ diff --git a/bin/libcurl.4.dylib b/bin/libcurl.4.dylib new file mode 100644 index 0000000..c5216f7 Binary files /dev/null and b/bin/libcurl.4.dylib differ diff --git a/bin/libidn2.0.dylib b/bin/libidn2.0.dylib new file mode 100644 index 0000000..ef73aa9 Binary files /dev/null and b/bin/libidn2.0.dylib differ diff --git a/bin/libintl.8.dylib b/bin/libintl.8.dylib new file mode 100644 index 0000000..25ac11d Binary files /dev/null and b/bin/libintl.8.dylib differ diff --git a/bin/liblber.2.dylib b/bin/liblber.2.dylib new file mode 100644 index 0000000..1653dde Binary files /dev/null and b/bin/liblber.2.dylib differ diff --git a/bin/libldap.2.dylib b/bin/libldap.2.dylib new file mode 100644 index 0000000..bf53e78 Binary files /dev/null and b/bin/libldap.2.dylib differ diff --git a/bin/libnghttp2.14.dylib b/bin/libnghttp2.14.dylib new file mode 100644 index 0000000..19cd75b Binary files /dev/null and b/bin/libnghttp2.14.dylib differ diff --git a/bin/libonig.5.dylib b/bin/libonig.5.dylib new file mode 100644 index 0000000..f7bcabc Binary files /dev/null and b/bin/libonig.5.dylib differ diff --git a/bin/libreadline.8.dylib b/bin/libreadline.8.dylib new file mode 100644 index 0000000..3f4b236 Binary files /dev/null and b/bin/libreadline.8.dylib differ diff --git a/bin/librtmp.1.dylib b/bin/librtmp.1.dylib new file mode 100644 index 0000000..713929f Binary files /dev/null and b/bin/librtmp.1.dylib differ diff --git a/bin/libssh2.1.dylib b/bin/libssh2.1.dylib new file mode 100644 index 0000000..916b9d8 Binary files /dev/null and b/bin/libssh2.1.dylib differ diff --git a/bin/libunistring.5.dylib b/bin/libunistring.5.dylib new file mode 100644 index 0000000..47a5938 Binary files /dev/null and b/bin/libunistring.5.dylib differ diff --git a/bin/libxdiff.0.dylib b/bin/libxdiff.0.dylib new file mode 100644 index 0000000..574f99f Binary files /dev/null and b/bin/libxdiff.0.dylib differ diff --git a/bin/libzip.5.dylib b/bin/libzip.5.dylib new file mode 100644 index 0000000..a5049fb Binary files /dev/null and b/bin/libzip.5.dylib differ diff --git a/bin/libzstd.1.dylib b/bin/libzstd.1.dylib new file mode 100644 index 0000000..4fc087d Binary files /dev/null and b/bin/libzstd.1.dylib differ diff --git a/bin/pecl b/bin/pecl new file mode 100755 index 0000000..a6faa77 --- /dev/null +++ b/bin/pecl @@ -0,0 +1,28 @@ +#!/bin/sh + +# first find which PHP binary to use +if test "x$PHP_PEAR_PHP_BIN" != "x"; then + PHP="$PHP_PEAR_PHP_BIN" +else + if test "/Users/apostol/.phpbrew/php/php-7.4.32/bin/php" = '@'php_bin'@'; then + PHP=php + else + PHP="/Users/apostol/.phpbrew/php/php-7.4.32/bin/php" + fi +fi + +# then look for the right pear include dir +if test "x$PHP_PEAR_INSTALL_DIR" != "x"; then + INCDIR=$PHP_PEAR_INSTALL_DIR + INCARG="-d include_path=$PHP_PEAR_INSTALL_DIR" +else + if test "/Users/apostol/.phpbrew/php/php-7.4.32/lib/php/pear" = '@'php_dir'@'; then + INCDIR=`dirname $0` + INCARG="" + else + INCDIR="/Users/apostol/.phpbrew/php/php-7.4.32/lib/php/pear" + INCARG="-d include_path=/Users/apostol/.phpbrew/php/php-7.4.32/lib/php/pear" + fi +fi + +exec $PHP -C -q $INCARG -d date.timezone=UTC -d output_buffering=1 -d variables_order=EGPCS -d safe_mode=0 -d register_argc_argv="On" $INCDIR/peclcmd.php "$@"