diff --git a/docs/appendix/tools.md b/docs/appendix/tools.md
index 86aa61a..3f3a20d 100644
--- a/docs/appendix/tools.md
+++ b/docs/appendix/tools.md
@@ -9,7 +9,7 @@
| Name | Description | PHP 8.0 | PHP 8.1 | PHP 8.2 | PHP 8.3 | PHP 8.4 |
| :--- | :---------- | :------ | :------ | :------ | :------ | :------ |
-| | Total available: 59 | 33 | 34 | 36 | 40 | 44 |
+| | Total available: 60 | 33 | 34 | 36 | 39 | 43 |
| asciinema | [Terminal session recorder](https://github.com/asciinema/asciinema) | ✅ | ✅ | ✅ | ✅ | ✅ |
| box v4 | [Fast, zero config application bundler with PHARs](https://github.com/box-project/box) | ❌ | ❌ | ✅ | ✅ | ❌ |
| box-manifest v4 | [Create a manifest to a PHP Archive (PHAR) for the BOX project](https://github.com/llaville/box-manifest) | ❌ | ❌ | ✅ | ✅ | ✅ |
@@ -46,7 +46,8 @@
| phpcs 2 | [PHP_CodeSniffer detects violations of a defined set of coding standards](https://github.com/squizlabs/PHP_CodeSniffer) | ✅ | ✅ | ✅ | ✅ | ✅ |
| phpcs 3 | [PHP_CodeSniffer detects violations of a defined set of coding standards](https://github.com/squizlabs/PHP_CodeSniffer) | ✅ | ✅ | ✅ | ✅ | ✅ |
| phpdd | [Finds usage of deprecated features](https://github.com/wapmorgan/PhpDeprecationDetector) | ✅ | ✅ | ✅ | ✅ | ✅ |
-| phpdoc | [Documentation Generator for PHP](https://github.com/phpdocumentor/phpdocumentor) | ✅ | ✅ | ✅ | ✅ | ✅ |
+| phpdoc 3.3 | [Documentation Generator for PHP 7](https://github.com/phpdocumentor/phpdocumentor) | ✅ | ✅ | ✅ | ✅ | ✅ |
+| phpdoc 3.5 | [Documentation Generator for PHP 8](https://github.com/phpdocumentor/phpdocumentor) | ❌ | ✅ | ✅ | ✅ | ✅ |
| phplint v4 | [Checks PHP file syntax (4.x version)](https://github.com/overtrue/phplint) | ✅ | ✅ | ✅ | ✅ | ✅ |
| phplint v5 | [Checks PHP file syntax (5.x version)](https://github.com/overtrue/phplint) | ❌ | ✅ | ✅ | ✅ | ✅ |
| phplint v6 | [Checks PHP file syntax (6.x version)](https://github.com/overtrue/phplint) | ❌ | ❌ | ✅ | ✅ | ✅ |
diff --git a/resources/tools/phpdoc.json b/resources/tools/phpdoc.json
index 3c7ae44..25f1051 100644
--- a/resources/tools/phpdoc.json
+++ b/resources/tools/phpdoc.json
@@ -1,8 +1,8 @@
{
"tools": [
{
- "name": "phpdoc",
- "summary": "Documentation Generator for PHP",
+ "name": "phpdoc 3.5",
+ "summary": "Documentation Generator for PHP 8",
"website": "https://github.com/phpdocumentor/phpdocumentor",
"command": {
"phar-download": {
@@ -11,9 +11,33 @@
}
},
"tags": [
+ "phpdoc-81",
"exclude-php:5.6",
"exclude-php:7.0",
- "exclude-php:7.1"
+ "exclude-php:7.1",
+ "exclude-php:7.2",
+ "exclude-php:7.3",
+ "exclude-php:7.4",
+ "exclude-php:8.0"
+ ]
+ },
+ {
+ "name": "phpdoc 3.3",
+ "summary": "Documentation Generator for PHP 7",
+ "website": "https://github.com/phpdocumentor/phpdocumentor",
+ "command": {
+ "phar-download": {
+ "phar": "https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.3.1/phpDocumentor.phar",
+ "bin": "%target-dir%/phpdoc"
+ }
+ },
+ "tags": [
+ "phpdoc-74",
+ "exclude-php:5.6",
+ "exclude-php:7.0",
+ "exclude-php:7.1",
+ "exclude-php:7.2",
+ "exclude-php:7.3"
]
}
]