diff options
| -rw-r--r-- | REFLECTION | 19 | ||||
| -rw-r--r-- | php-pecl-druid.spec | 12 | 
2 files changed, 28 insertions, 3 deletions
@@ -1,4 +1,9 @@ -Extension [ <persistent> extension #78 Druid version 0.3.0 ] { +Extension [ <persistent> extension #78 Druid version 0.6.0 ] { + +  - Dependencies { +    Dependency [ curl (Required) ] +    Dependency [ json (Required) ] +  }    - INI {      Entry [ druid.host <SYSTEM> ] @@ -16,6 +21,15 @@ Extension [ <persistent> extension #78 Druid version 0.3.0 ] {      Entry [ druid.debug <ALL> ]        Current = '0'      } +    Entry [ druid.curl_dns_cache_timeout <ALL> ] +      Current = '1' +    } +    Entry [ druid.curl_connect_timeout <ALL> ] +      Current = '3' +    } +    Entry [ druid.curl_timeout <ALL> ] +      Current = '5' +    }    }    - Classes [1] { @@ -34,7 +48,8 @@ Extension [ <persistent> extension #78 Druid version 0.3.0 ] {          }        } -      - Properties [6] { +      - Properties [7] { +        Property [ <default> protected $tpl_path ]          Property [ <default> protected $response_debug_info ]          Property [ <default> protected $response_code ]          Property [ <default> protected $_curl_error_no ] diff --git a/php-pecl-druid.spec b/php-pecl-druid.spec index de6f194..ce5e43e 100644 --- a/php-pecl-druid.spec +++ b/php-pecl-druid.spec @@ -24,7 +24,7 @@  Summary:        A Druid driver for PHP  Name:           %{?sub_prefix}php-pecl-%{pecl_name} -Version:        0.3.0 +Version:        0.6.0  Release:        1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}  License:        ASL 2.0  Group:          Development/Languages @@ -127,10 +127,15 @@ extension=%{pecl_name}.so  ;druid.base_auth_passport = ''  ;druid.tpl_path = '/data/php-druid/tpl'  ;druid.debug = 0 +;druid.curl_dns_cache_timeout=1 +;druid.curl_connect_timeout=3 +;druid.curl_timeout=5  EOF  %build +%{?dtsenable} +  cd NTS  %{_bindir}/phpize  %configure \ @@ -154,6 +159,7 @@ make %{?_smp_mflags}  %install  rm -rf %{buildroot} +%{?dtsenable}  make -C NTS install INSTALL_ROOT=%{buildroot} @@ -233,6 +239,10 @@ rm -rf %{buildroot}  %changelog +* Mon Dec 26 2016 Remi Collet <remi@fedoraproject.org> - 0.6.0-1 +- update to 0.6.0 (stable) +- open https://github.com/Neeke/PHP-Druid/issues/5 PHP 7 broken +  * Wed Dec 21 2016 Remi Collet <remi@fedoraproject.org> - 0.3.0-1  - initial package, version 0.3.0 (php 5, beta)  - open https://github.com/Neeke/PHP-Druid/issues/1 mising reflection  | 
