Skip to content

Commit

Permalink
update PhpDocumentor reference
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Nov 24, 2024
1 parent 37806fa commit 9a660a1
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 5 deletions.
5 changes: 3 additions & 2 deletions docs/appendix/tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<!-- MARKDOWN-TABLE:START -->
| Name | Description | <sup>PHP 8.0</sup> | <sup>PHP 8.1</sup> | <sup>PHP 8.2</sup> | <sup>PHP 8.3</sup> | <sup>PHP 8.4</sup> |
| :--- | :---------- | :------ | :------ | :------ | :------ | :------ |
| | 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) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| box v4 | [Fast, zero config application bundler with PHARs](https://github.com/box-project/box) | &#x274C; | &#x274C; | &#x2705; | &#x2705; | &#x274C; |
| box-manifest v4 | [Create a manifest to a PHP Archive (PHAR) for the BOX project](https://github.com/llaville/box-manifest) | &#x274C; | &#x274C; | &#x2705; | &#x2705; | &#x2705; |
Expand Down Expand Up @@ -46,7 +46,8 @@
| phpcs 2 | [PHP_CodeSniffer detects violations of a defined set of coding standards](https://github.com/squizlabs/PHP_CodeSniffer) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpcs 3 | [PHP_CodeSniffer detects violations of a defined set of coding standards](https://github.com/squizlabs/PHP_CodeSniffer) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpdd | [Finds usage of deprecated features](https://github.com/wapmorgan/PhpDeprecationDetector) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpdoc | [Documentation Generator for PHP](https://github.com/phpdocumentor/phpdocumentor) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpdoc 3.3 | [Documentation Generator for PHP 7](https://github.com/phpdocumentor/phpdocumentor) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpdoc 3.5 | [Documentation Generator for PHP 8](https://github.com/phpdocumentor/phpdocumentor) | &#x274C; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phplint v4 | [Checks PHP file syntax (4.x version)](https://github.com/overtrue/phplint) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phplint v5 | [Checks PHP file syntax (5.x version)](https://github.com/overtrue/phplint) | &#x274C; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phplint v6 | [Checks PHP file syntax (6.x version)](https://github.com/overtrue/phplint) | &#x274C; | &#x274C; | &#x2705; | &#x2705; | &#x2705; |
Expand Down
30 changes: 27 additions & 3 deletions resources/tools/phpdoc.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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"
]
}
]
Expand Down

0 comments on commit 9a660a1

Please sign in to comment.