diff -pruN 5.6.2-1/README.md 5.6.3-1/README.md
--- 5.6.2-1/README.md	2025-04-13 19:20:35.000000000 +0000
+++ 5.6.3-1/README.md	2025-08-01 19:43:32.000000000 +0000
@@ -1,9 +1,9 @@
 [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
-![Qa workflow](https://github.com/phpDocumentor/ReflectionDocBlock/workflows/Qa%20workflow/badge.svg)
+[![Integrate](https://github.com/phpDocumentor/ReflectionDocBlock/actions/workflows/integrate.yaml/badge.svg)](https://github.com/phpDocumentor/ReflectionDocBlock/actions/workflows/integrate.yaml)
 [![Scrutinizer Code Coverage](https://img.shields.io/scrutinizer/coverage/g/phpDocumentor/ReflectionDocBlock.svg)](https://scrutinizer-ci.com/g/phpDocumentor/ReflectionDocBlock/?branch=master)
 [![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/phpDocumentor/ReflectionDocBlock.svg)](https://scrutinizer-ci.com/g/phpDocumentor/ReflectionDocBlock/?branch=master)
-[![Stable Version](https://img.shields.io/packagist/v/phpdocumentor/reflection-docblock.svg)](https://packagist.org/packages/phpdocumentor/reflection-docblock)
-[![Unstable Version](https://img.shields.io/packagist/vpre/phpdocumentor/reflection-docblock.svg)](https://packagist.org/packages/phpdocumentor/reflection-docblock)
+[![Stable Version](https://img.shields.io/packagist/v/phpdocumentor/reflection-docblock.svg?label=stable)](https://packagist.org/packages/phpdocumentor/reflection-docblock)
+[![Unstable Version](https://img.shields.io/packagist/v/phpdocumentor/reflection-docblock.svg?include_prereleases&label=unstable)](https://packagist.org/packages/phpdocumentor/reflection-docblock)
 
 ReflectionDocBlock 
 ==================
diff -pruN 5.6.2-1/debian/changelog 5.6.3-1/debian/changelog
--- 5.6.2-1/debian/changelog	2025-04-15 06:51:52.000000000 +0000
+++ 5.6.3-1/debian/changelog	2025-08-21 05:57:22.000000000 +0000
@@ -1,3 +1,14 @@
+php-phpdocumentor-reflection-docblock (5.6.3-1) unstable; urgency=medium
+
+  [ Worma ]
+  * setAccessible() does not have any effect as of PHP 8.1
+
+  [ David Prévot ]
+  * debian/control: Document nocheck flag
+  * Remove Rules-Requires-Root
+
+ -- David Prévot <taffit@debian.org>  Thu, 21 Aug 2025 07:57:22 +0200
+
 php-phpdocumentor-reflection-docblock (5.6.2-1) unstable; urgency=medium
 
   [ Jaapio ]
diff -pruN 5.6.2-1/debian/control 5.6.3-1/debian/control
--- 5.6.2-1/debian/control	2025-04-15 06:51:40.000000000 +0000
+++ 5.6.3-1/debian/control	2025-08-21 05:57:22.000000000 +0000
@@ -7,18 +7,17 @@ Uploaders: David Prévot <taffit@debian.
 Build-Depends: debhelper-compat (= 13),
                dh-sequence-phpcomposer,
                php-doctrine-deprecations,
-               php-mockery,
+               php-mockery <!nocheck>,
                php-phpdocumentor-reflection-docblock <!nocheck>,
                php-phpdocumentor-type-resolver,
                php-phpstan-phpdoc-parser,
                php-webmozart-assert,
                phpab,
-               phpunit
+               phpunit <!nocheck>
 Standards-Version: 4.7.2
 Homepage: https://phpdoc.org/
 Vcs-Git: https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-docblock.git
 Vcs-Browser: https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-docblock
-Rules-Requires-Root: no
 
 Package: php-phpdocumentor-reflection-docblock
 Multi-Arch: foreign
diff -pruN 5.6.2-1/src/DocBlock/Tags/InvalidTag.php 5.6.3-1/src/DocBlock/Tags/InvalidTag.php
--- 5.6.2-1/src/DocBlock/Tags/InvalidTag.php	2025-04-13 19:20:35.000000000 +0000
+++ 5.6.3-1/src/DocBlock/Tags/InvalidTag.php	2025-08-01 19:43:32.000000000 +0000
@@ -77,7 +77,9 @@ final class InvalidTag implements Tag
     private function flattenExceptionBacktrace(Throwable $exception): void
     {
         $traceProperty = (new ReflectionClass(Exception::class))->getProperty('trace');
-        $traceProperty->setAccessible(true);
+        if (PHP_VERSION_ID < 80100) {
+            $traceProperty->setAccessible(true);
+        }
 
         do {
             $trace = $exception->getTrace();
@@ -96,7 +98,9 @@ final class InvalidTag implements Tag
             $exception = $exception->getPrevious();
         } while ($exception !== null);
 
-        $traceProperty->setAccessible(false);
+        if (PHP_VERSION_ID < 80100) {
+            $traceProperty->setAccessible(false);
+        }
     }
 
     /**
