diff options
| -rw-r--r-- | PHPINFO | 2 | ||||
| -rw-r--r-- | REFLECTION | 38 | ||||
| -rw-r--r-- | composer.json | 13 | ||||
| -rw-r--r-- | php-pecl-xdebug3.spec | 15 |
4 files changed, 45 insertions, 23 deletions
@@ -10,7 +10,7 @@ xdebug [1m __/ | [1m |___/ -[0mVersion => 3.5.0 +[0mVersion => 3.5.3 Support Xdebug on Patreon, GitHub, or as a business: https://xdebug.org/support Enabled Features (through 'xdebug.mode' setting) @@ -1,4 +1,4 @@ -Extension [ <persistent> extension #18 xdebug version 3.5.0 ] { +Extension [ <persistent> extension #17 xdebug version 3.5.3 ] { - INI { Entry [ xdebug.mode <SYSTEM> ] @@ -235,24 +235,24 @@ Extension [ <persistent> extension #18 xdebug version 3.5.0 ] { } - Constants [18] { - Constant [ int XDEBUG_CC_UNUSED ] { 1 } - Constant [ int XDEBUG_CC_DEAD_CODE ] { 2 } - Constant [ int XDEBUG_CC_BRANCH_CHECK ] { 4 } - Constant [ int XDEBUG_FILTER_CODE_COVERAGE ] { 256 } - Constant [ int XDEBUG_FILTER_STACK ] { 512 } - Constant [ int XDEBUG_FILTER_TRACING ] { 768 } - Constant [ int XDEBUG_FILTER_NONE ] { 0 } - Constant [ int XDEBUG_PATH_INCLUDE ] { 1 } - Constant [ int XDEBUG_PATH_EXCLUDE ] { 2 } - Constant [ int XDEBUG_NAMESPACE_INCLUDE ] { 17 } - Constant [ int XDEBUG_NAMESPACE_EXCLUDE ] { 18 } - Constant [ int XDEBUG_TRACE_APPEND ] { 1 } - Constant [ int XDEBUG_TRACE_COMPUTERIZED ] { 2 } - Constant [ int XDEBUG_TRACE_FLAMEGRAPH_COST ] { 16 } - Constant [ int XDEBUG_TRACE_FLAMEGRAPH_MEM ] { 32 } - Constant [ int XDEBUG_TRACE_HTML ] { 4 } - Constant [ int XDEBUG_TRACE_NAKED_FILENAME ] { 8 } - Constant [ int XDEBUG_STACK_NO_DESC ] { 1 } + Constant [ <persistent> int XDEBUG_CC_UNUSED ] { 1 } + Constant [ <persistent> int XDEBUG_CC_DEAD_CODE ] { 2 } + Constant [ <persistent> int XDEBUG_CC_BRANCH_CHECK ] { 4 } + Constant [ <persistent> int XDEBUG_FILTER_CODE_COVERAGE ] { 256 } + Constant [ <persistent> int XDEBUG_FILTER_STACK ] { 512 } + Constant [ <persistent> int XDEBUG_FILTER_TRACING ] { 768 } + Constant [ <persistent> int XDEBUG_FILTER_NONE ] { 0 } + Constant [ <persistent> int XDEBUG_PATH_INCLUDE ] { 1 } + Constant [ <persistent> int XDEBUG_PATH_EXCLUDE ] { 2 } + Constant [ <persistent> int XDEBUG_NAMESPACE_INCLUDE ] { 17 } + Constant [ <persistent> int XDEBUG_NAMESPACE_EXCLUDE ] { 18 } + Constant [ <persistent> int XDEBUG_TRACE_APPEND ] { 1 } + Constant [ <persistent> int XDEBUG_TRACE_COMPUTERIZED ] { 2 } + Constant [ <persistent> int XDEBUG_TRACE_FLAMEGRAPH_COST ] { 16 } + Constant [ <persistent> int XDEBUG_TRACE_FLAMEGRAPH_MEM ] { 32 } + Constant [ <persistent> int XDEBUG_TRACE_HTML ] { 4 } + Constant [ <persistent> int XDEBUG_TRACE_NAKED_FILENAME ] { 8 } + Constant [ <persistent> int XDEBUG_STACK_NO_DESC ] { 1 } } - Functions { diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..8cf436a --- /dev/null +++ b/composer.json @@ -0,0 +1,13 @@ +{ + "name": "xdebug/xdebug", + "type": "php-ext-zend", + "license": "Xdebug-1.03", + "description": "Xdebug is a debugging and productivity extension for PHP", + "require": { + "php": ">=8.0,<8.6" + }, + "php-ext": { + "priority": 90, + "configure-options": [] + } +} diff --git a/php-pecl-xdebug3.spec b/php-pecl-xdebug3.spec index 15a328c..1378906 100644 --- a/php-pecl-xdebug3.spec +++ b/php-pecl-xdebug3.spec @@ -23,7 +23,7 @@ %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} # version/release -%global upstream_version 3.5.1 +%global upstream_version 3.5.3 #global upstream_prever alpha3 #global upstream_lower alpha3 %global sources %{pecl_name}-%{tag} @@ -40,11 +40,11 @@ Name: %{?scl_prefix}php-pecl-xdebug3 Summary: Provides functions for function traces and profiling +License: Xdebug-1.03 Version: %{upstream_version}%{?upstream_prever:~%{upstream_lower}} +Release: 1%{?dist} %forgemeta -Release: 2%{?dist} -License: Xdebug-1.03 URL: %{forgeurl} Source0: %{forgesource} @@ -237,6 +237,10 @@ cd %{sources} rm tests/profiler/bug02001-no-zlib-compression.phpt rm tests/tracing/start_no_zlib_compression.phpt %endif +%ifarch aarch64 +rm tests/debugger/bug02424-*.phpt +%endif + # parallelism issue rm tests/tracing/bug01875-002.phpt @@ -252,6 +256,7 @@ TEST_PHP_ARGS="-n $modules -d zend_extension=%{buildroot}%{php_extdir}/%{pecl_na %files %license %{sources}/LICENSE +%doc %{sources}/composer.json %doc %{sources}/CREDITS %doc %{sources}/CONTRIBUTING.rst %doc %{sources}/README.rst @@ -266,6 +271,10 @@ TEST_PHP_ARGS="-n $modules -d zend_extension=%{buildroot}%{php_extdir}/%{pecl_na %changelog +* Tue Jun 9 2026 Remi Collet <remi@remirepo.net> - 3.5.3-1 +- update to 3.5.3 +- open https://bugs.xdebug.org/view.php?id=2434 test failure on aarch64 + * Fri Feb 6 2026 Remi Collet <remi@remirepo.net> - 3.5.1-2 - drop pear/pecl dependency - use forge macros for sources |
